Skip to content

Commit 6ae7578

Browse files
committed
ci: fix
1 parent bffbafc commit 6ae7578

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/ci.yml

+9-5
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,18 @@ jobs:
2121
uses: actions/setup-node@v2
2222
with:
2323
node-version: '20' # Specify the Node.js version
24-
- name: navigation frontpage
25-
run: cd spez-fronted
2624
- name: Install dependencies
27-
run: npm install
25+
run: |
26+
cd spez-frontend
27+
npm install
2828
2929
- name: Run tests
30-
run: npm test --if-present
30+
run: |
31+
cd spez-frontend
32+
npm test --if-present
3133
3234
- name: Build the project
33-
run: npm run build --if-present
35+
run: |
36+
cd spez-frontend
37+
npm run build --if-present
3438

0 commit comments

Comments
 (0)