Skip to content

Commit

Permalink
Specify node version directly
Browse files Browse the repository at this point in the history
  • Loading branch information
jdknives committed Aug 1, 2023
1 parent 9007f22 commit 18a89a4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@ jobs:
with:
go-version: 1.19.x
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
# Version Spec of the version to use in SemVer notation.
# It also emits such aliases as lts, latest, nightly and canary builds
# Examples: 12.x, 10.15.1, >=10.15.0, lts/Hydrogen, 16-nightly, latest, node
node-version: '14.20'
- name: Install requirements
run: |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.4/install.sh | bash
export NVM_DIR="$HOME/.nvm"
nvm install 14.20
go get -t ./...
make install-linters
npn install
Expand Down

0 comments on commit 18a89a4

Please sign in to comment.