Fixed bug causing routes not to render on change (#224) #46
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PUBLISH | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
publish-npm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
registry-url: https://registry.npmjs.org/ | |
- name: Install packages | |
run: npm install | |
- name: Test source | |
run: npm run test | |
- name: Build source | |
run: npm run build | |
- name: Publish packages to npm registry | |
run: npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.REACT_RESOURCE_ROUTER_NPM_TOKEN}} |