Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ jobs:
if: ${{ steps.release.outputs.release_created }}
run: npm ci

- name: Build project
if: ${{ steps.release.outputs.release_created }}
run: npm run build

- name: Publish to NPM
run: npm publish
env:
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"unit": "npm run build-clean && node --experimental-vm-modules node_modules/jest/bin/jest.js",
"integration": "npm run build-clean && npx playwright test",
"benchmark": "npm run build-clean && cd benchmarks && npm install && npm start",
"lint": "npx eslint src tests"
"lint": "npx eslint src tests",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
Expand Down