v2.5.1 #53
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: npm Publish | |
on: | |
release: | |
types: [published] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.11.1 | |
- name: Use node_modules cache | |
uses: actions/cache@v4 | |
with: | |
path: node_modules | |
key: yarn-node-20-lock-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
yarn-node-20-lock- | |
- run: yarn install --frozen-lockfile | |
- run: yarn lint | |
- run: yarn test --ci --coverage --maxWorkers=2 | |
- run: yarn build | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: build-output | |
path: dist | |
if-no-files-found: error | |
- run: yarn test:exports | |
# npm install -g npm@latest is necessary to make provenance available (available since v9.6.5 or so). More info: https://docs.npmjs.com/generating-provenance-statements | |
- run: npm install -g npm@latest | |
- uses: JS-DevTools/npm-publish@v3 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} |