NPM publish CD workflow #26
Workflow file for this run
This file contains hidden or 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: NPM publish CD workflow | |
| on: | |
| push: | |
| tags: | |
| - v*.*.* | |
| jobs: | |
| build: | |
| # Run on latest version of ubuntu | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| # "ref" specifies the branch to check out. | |
| # "github.event.release.target_commitish" is a global variable and specifies the branch the release targeted | |
| ref: ${{ github.event.release.target_commitish }} | |
| # install Node.js | |
| - name: Use Node.js 16 | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 16 | |
| # Specifies the registry, this field is required! | |
| registry-url: https://registry.npmjs.org/ | |
| # clean install of your projects' deps. We use "npm ci" to avoid package lock changes | |
| - run: npm ci --legacy-peer-deps | |
| # set up git since we will later push to the repo | |
| - run: git config --global user.name "GitHub CD bot" | |
| - run: git config --global user.email "github-cd-bot@example.com" | |
| # upgrade npm version in package.json to the tag used in the release. | |
| - run: npm version ${{ github.event.release.tag_name }} | |
| # build the project | |
| - run: npm run build | |
| # run tests just in case | |
| - run: npx jest --clear-cache | |
| - run: npm test | |
| # build docs | |
| - run: cd docs-src | |
| - run: npm run build | |
| - run: cd ../ | |
| # publish to NPM -> there is one caveat, continue reading for the fix | |
| - run: npm publish | |
| env: | |
| # Use a token to publish to NPM. See below for how to set it up | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |