Skip to content

Commit

Permalink
👷 update GitHub Actions' configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
VitorLuizC committed Sep 20, 2024
1 parent a49f2f8 commit 4b5f462
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
- name: 'Setup Node.js'
uses: 'actions/setup-node@v3'
with:
node-version: '16.x'
node-version: '20.x'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integrations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
- name: 'Setup Node.js and npm'
uses: './.github/actions/setup'

- name: 'Execute the lint script'
run: 'npm run lint'
- name: 'Execute the check scripts'
run: 'bash run check'


test:
Expand All @@ -30,7 +30,7 @@ jobs:
uses: './.github/actions/setup'

- name: 'Execute the test script'
run: 'npm run test'
run: 'bash run test'

bundle:
name: 'Bundle package with Rollup.js'
Expand All @@ -42,5 +42,5 @@ jobs:
- name: 'Setup Node.js and npm'
uses: './.github/actions/setup'

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

0 comments on commit 4b5f462

Please sign in to comment.