Skip to content

Commit 4b5f462

Browse files
committed
👷 update GitHub Actions' configuration
1 parent a49f2f8 commit 4b5f462

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/actions/setup/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ runs:
66
- name: 'Setup Node.js'
77
uses: 'actions/setup-node@v3'
88
with:
9-
node-version: '16.x'
9+
node-version: '20.x'
1010
cache: 'npm'
1111
cache-dependency-path: '**/package-lock.json'
1212

.github/workflows/continuous-integrations.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
- name: 'Setup Node.js and npm'
1616
uses: './.github/actions/setup'
1717

18-
- name: 'Execute the lint script'
19-
run: 'npm run lint'
18+
- name: 'Execute the check scripts'
19+
run: 'bash run check'
2020

2121

2222
test:
@@ -30,7 +30,7 @@ jobs:
3030
uses: './.github/actions/setup'
3131

3232
- name: 'Execute the test script'
33-
run: 'npm run test'
33+
run: 'bash run test'
3434

3535
bundle:
3636
name: 'Bundle package with Rollup.js'
@@ -42,5 +42,5 @@ jobs:
4242
- name: 'Setup Node.js and npm'
4343
uses: './.github/actions/setup'
4444

45-
- name: 'Execute the build script'
46-
run: 'npm run build'
45+
- name: 'Execute the bundle script'
46+
run: 'bash run bundle'

0 commit comments

Comments
 (0)