Skip to content

Commit 5105ae7

Browse files
author
David Buzinski
committed
duh
1 parent 3545b30 commit 5105ae7

3 files changed

Lines changed: 404 additions & 409 deletions

File tree

.github/workflows/bat.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,5 @@ jobs:
1313
- uses: actions/setup-node@v6
1414
with:
1515
node-version: 24
16-
- run: npm --version
17-
- run: node --version
18-
- run: npm install
19-
- run: npm test
20-
- run: npm run build
21-
- run: npm run package
16+
- name: Perform npm tasks
17+
run: npm run ci

.github/workflows/publish.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
git config user.email '<>'
2020
- uses: actions/setup-node@v6
2121
with:
22-
node-version: 24.14.0
22+
node-version: 24
2323

2424
# Call `npm version`. It increments the version and commits the changes.
2525
# We'll save the output (new version string) for use in the following
@@ -33,10 +33,9 @@ jobs:
3333
git commit -m "[skip ci] Bump $VERSION"
3434
git push origin HEAD:main
3535
36-
- run: npm ci --ignore-scripts || npm ci --ignore-scripts
37-
- run: npm test
38-
- run: npm run build
39-
- run: npm run package
36+
# Now carry on, business as usual
37+
- name: Perform npm tasks
38+
run: npm run ci
4039

4140
# Finally, create a detached commit containing the built artifacts and tag
4241
# it with the release. Note: the fact that the branch is locally updated

0 commit comments

Comments
 (0)