Skip to content

Commit

Permalink
Merge pull request #39 from helium/develop
Browse files Browse the repository at this point in the history
Updating github action to use node 20
  • Loading branch information
deasydoesit authored Mar 19, 2024
2 parents a1af2ea + 7728bc0 commit 4f1da7c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install modules
run: npm install
- name: Run tests
Expand All @@ -27,11 +27,11 @@ jobs:
needs: tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18.x'
node-version: '20.x'
- name: Install dependencies
run: npm install
- name: Environment
Expand All @@ -55,11 +55,11 @@ jobs:
timeout-minutes: 60
needs: tests
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: '20.x'
- name: Install dependencies
run: npm install
- name: Environment
Expand Down

0 comments on commit 4f1da7c

Please sign in to comment.