Installing NPM dependencies in CI for tests
This commit is contained in:
parent
fcf0888864
commit
a3b20cf065
3 changed files with 10 additions and 2 deletions
9
.github/workflows/end_to_end_tests.yml
vendored
9
.github/workflows/end_to_end_tests.yml
vendored
|
@ -20,6 +20,15 @@ jobs:
|
|||
- name: "Checkout"
|
||||
uses: "actions/checkout@v2.0.0"
|
||||
|
||||
- name: "Setup NodeJS"
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: '14.x'
|
||||
|
||||
- name: "Install dependencies"
|
||||
run: yarn install
|
||||
working-directory: "tests"
|
||||
|
||||
- name: "Setup .env file"
|
||||
run: cp .env.template .env
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue