Skip to content

Commit

Permalink
ci: install node dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Ron de las Alas committed Oct 12, 2023
1 parent 91528a5 commit fe967ca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ on:
push:
jobs:
setup:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
container:
image: python:2.7.18-buster
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16
node-version-file: '.nvmrc'
- name: Install Node Dependencies
run: node -v
run: npm ci

0 comments on commit fe967ca

Please sign in to comment.