Skip to content

Commit

Permalink
Use setup-node action for installing node
Browse files Browse the repository at this point in the history
Replaces a shell command for installing node in order to get the proper version installed correctly.
  • Loading branch information
afred committed Jul 15, 2022
1 parent 8fde4e3 commit 6fd53fe
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ams-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@ jobs:
java-version: '11'

- name: Install Node
shell: bash -l -eo pipefail {0}
run: nvm install 12.9.0
uses: actions/setup-node@v3
with:
node-version: 12.9.0

# shell: bash -l -eo pipefail {0}
# run: nvm install 12.9.0

- name: Install Chrome Browser
run: google-chrome-stable --headless --disable-gpu --no-sandbox --remote-debugging-port=9222 http://localhost &
Expand Down

0 comments on commit 6fd53fe

Please sign in to comment.