There was an error while loading. Please reload this page.
1 parent b9a274c commit c29283eCopy full SHA for c29283e
2 files changed
.github/workflows/release.yml
@@ -15,10 +15,10 @@ jobs:
15
- uses: actions/checkout@v6
16
- uses: actions/setup-node@v6
17
with:
18
- node-version: 22
19
- registry-url: https://registry.npmjs.org/
20
- - run: npm install -g npm@latest
21
- - run: npm install --ignore-scripts --no-audit --no-fund
+ node-version: 24
+ - run: npm ci --ignore-scripts --no-audit --no-fund
+ - run: npm test
+ - run: npm run build
22
- name: Bump version from release tag
23
run: |
24
VERSION=${GITHUB_REF_NAME#v}
@@ -28,6 +28,4 @@ jobs:
28
git add package.json package-lock.json
29
git commit -m "chore: bump version to $VERSION"
30
git push origin HEAD:${{ github.event.repository.default_branch }}
31
- - run: npm test
32
- - run: npm run build
33
- run: npm publish --access public
0 commit comments