Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ngjiayuan committed Oct 24, 2023
1 parent 3710f87 commit 075d396
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@ jobs:
with:
node-version: "18" # You can specify the Node.js version you need

- name: Checkout frontend
run: cd frontend

- name: Install dependencies
run: npm install
run: |
cd frontend
npm install
- name: Build
run: npm run build
run: |
cd frontend
npm run build

0 comments on commit 075d396

Please sign in to comment.