Skip to content

Commit

Permalink
Install Node dependencies for integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rra committed Jan 4, 2021
1 parent 464ac0b commit ef65bb1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,22 @@ jobs:
with:
python-version: ${{ matrix.python }}

- name: Set up Node
uses: actions/setup-node@v1

- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install Node dependencies
run: npm ci
working-directory: ./ui

- name: Install tox
run: pip install tox

Expand Down

0 comments on commit ef65bb1

Please sign in to comment.