Skip to content

Commit 2a6bb88

Browse files
committed
fix: extension workflow
1 parent 9323f7a commit 2a6bb88

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/extension.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ jobs:
1515
uses: actions/setup-node@v3
1616
with:
1717
node-version: 18
18-
- run: npm ci --omit=dev
18+
- run: npm ci
1919
- run: npm run build --if-present
20+
- run: rm -rf node_modules
21+
- run: npm ci --omit=dev
2022
- run: npm run publish
2123
- uses: actions/upload-artifact@v3
2224
with:

.github/workflows/node-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
node-version: [18, 19]
1515
steps:
16-
- uses: actions/checkout@3
16+
- uses: actions/checkout@v3
1717
- name: Use Node.js ${{ matrix.node-version }}
1818
uses: actions/setup-node@v3
1919
with:

0 commit comments

Comments
 (0)