Skip to content

Commit

Permalink
chore: Add node setup to backend ci action
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyMFarley authored Jun 30, 2020
1 parent 3483cf3 commit 6a5c729
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,15 @@ jobs:
python -m pip install --upgrade pip
pip install tox
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 10.x

- name: Install Node dependencies
run: |
npm config set package-lock false
- name: Run back-end tests
run: |
tox

0 comments on commit 6a5c729

Please sign in to comment.