Skip to content

Commit 898b523

Browse files
committed
fix: workflows
1 parent f554e79 commit 898b523

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/develop.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ jobs:
1010
name: Check
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v1
13+
- uses: actions/checkout@v2
14+
- uses: actions/setup-node@v2
15+
with:
16+
node-version: '20.x'
1417

1518
- name: install dependencies
1619
run: npm install

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-node@v2
1313
with:
14-
node-version: '14.x'
14+
node-version: '20.x'
1515
registry-url: 'https://registry.npmjs.org'
1616
- run: npm install
1717
- run: npm run test

0 commit comments

Comments
 (0)