Skip to content

Commit de6dc18

Browse files
author
David Buzinski
committed
try running as separate steps
1 parent bbc93d8 commit de6dc18

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/bat.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,7 @@ jobs:
1313
- uses: actions/setup-node@v6
1414
with:
1515
node-version: 24.14.0
16-
- name: Perform npm tasks
17-
run: npm run ci
16+
- run: npm ci --ignore-scripts
17+
- run: npm test
18+
- run: npm run build
19+
- run: npm run package

.github/workflows/publish.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@ jobs:
3333
git commit -m "[skip ci] Bump $VERSION"
3434
git push origin HEAD:main
3535
36-
# Now carry on, business as usual
37-
- name: Perform npm tasks
38-
run: npm run ci
36+
- run: npm ci --ignore-scripts
37+
- run: npm test
38+
- run: npm run build
39+
- run: npm run package
3940

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

0 commit comments

Comments
 (0)