Skip to content

Commit

Permalink
update github actions configs to use node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
evnp committed Jun 30, 2024
1 parent 8c57eb6 commit eb05294
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v4
with:
node-version: '20.x'
- uses: actions/checkout@v2
- run: npm install
- run: npm run lint
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v4
with:
node-version: '20.x'
- uses: actions/checkout@v2
- run: npm install
- run: npm run test

0 comments on commit eb05294

Please sign in to comment.