Skip to content

Commit

Permalink
Update node version to LTS in test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Falci committed Nov 23, 2023
1 parent 68c0c6e commit d75c8b2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/test-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,13 @@ jobs:
run: ./test_hnsd

- name: Setup Integration
uses: actions/setup-node@v3.5.1
uses: actions/setup-node@v4
with:
node-version: 18
node-version: lts/*
check-latest: true

- name: Integration Tests
working-directory: ./integration
run: |
npm install
npm run test
run: |
npm install
npm run test
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ jobs:
run: ./test_hnsd

- name: Setup Integration
uses: actions/setup-node@v3.5.1
uses: actions/setup-node@v4
with:
node-version: 18
node-version: lts/*
check-latest: true

- name: Integration Tests
working-directory: ./integration
Expand Down

0 comments on commit d75c8b2

Please sign in to comment.