Skip to content

Commit

Permalink
chore(ci) install nodejs/npm in runners
Browse files Browse the repository at this point in the history
  • Loading branch information
casimiro committed Nov 16, 2023
1 parent 8c707d0 commit 020d157
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/job-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,11 @@ jobs:
uses: acifani/setup-tinygo@v1
with:
tinygo-version: 0.27.0
- name: Setup Nodejs
uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Setup Wasm runtime
run: ./util/runtime.sh -R ${{ inputs.runtime }} -V ${{ inputs[inputs.runtime] }}
- name: Setup local httpbin server
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/job-valgrind-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,11 @@ jobs:
uses: acifani/setup-tinygo@v1
with:
tinygo-version: 0.27.0
- name: Setup Nodejs
uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Setup Wasm runtime
run: ./util/runtime.sh -R ${{ inputs.runtime }} -V ${{ inputs[inputs.runtime] }}
- name: Setup local httpbin server
Expand Down
1 change: 1 addition & 0 deletions assets/release/Dockerfiles/Dockerfile.ubuntu-22.04
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ RUN apt-get install -y \
zlib1g-dev \
valgrind \
nodejs \
npm \
gcovr \
lcov \
unzip \
Expand Down

0 comments on commit 020d157

Please sign in to comment.