Skip to content

Commit 2f9433a

Browse files
build: install dependencies in root when running test
1 parent 2567c1a commit 2f9433a

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,13 @@ jobs:
1212
tests:
1313
name: Tests
1414
runs-on: ubuntu-latest
15-
defaults:
16-
run:
17-
working-directory: test
1815
steps:
1916
- uses: actions/checkout@v1
2017
- uses: actions/setup-node@v1
2118
- run: npm ci --ignore-scripts
22-
- run: npm run build
23-
- run: npm run start
19+
- run: cd ./test && npm ci --ignore-scripts
20+
- run: cd ./test && npm run build
21+
- run: cd ./test && npm run start
2422
build:
2523
name: Build
2624
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)