Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
use working-directory instead of cd
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian-Webster committed Feb 28, 2023
1 parent 1040d99 commit adf1d26
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,13 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: npm install for tests folder
run: cd tests && npm install
working-directory: tests
run: npm install

- name: npm install for backend folder
run: cd backend && npm install
working-directory: backend
run: npm install

- name: Run tests
run: cd tests && node tests
working-directory: tests
run: node tests

0 comments on commit adf1d26

Please sign in to comment.