Skip to content

Commit 075d396

Browse files
committed
fix workflow
1 parent 3710f87 commit 075d396

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/pullrequest.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ jobs:
1818
with:
1919
node-version: "18" # You can specify the Node.js version you need
2020

21-
- name: Checkout frontend
22-
run: cd frontend
23-
2421
- name: Install dependencies
25-
run: npm install
22+
run: |
23+
cd frontend
24+
npm install
2625
2726
- name: Build
28-
run: npm run build
27+
run: |
28+
cd frontend
29+
npm run build

0 commit comments

Comments
 (0)