Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
registry-url: https://registry.npmjs.org/
- run: npm install -g npm@latest
node-version: 24
- run: npm ci --ignore-scripts --no-audit --no-fund
- run: npx playwright install chromium --only-shell
- run: npm test -- --forbid-only
- run: npm run build
- name: Bump version in package.json
run: |
VERSION="${{ github.event.release.tag_name }}"
Expand All @@ -30,7 +31,4 @@ jobs:
git add package.json package-lock.json
git commit -m "chore: bump version to ${{ github.event.release.tag_name }}"
git push origin HEAD:main
- run: npx playwright install chromium --only-shell
- run: npm test -- --forbid-only
- run: npm run build
- run: npm publish --access public
Loading