Skip to content

Commit

Permalink
Fix GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
khabzox committed Aug 28, 2024
1 parent 46a1809 commit 1ad1a09
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,16 @@ jobs:
node-version: '18'

- name: Install dependencies
run: npm install
run: |
cd apps/nextjs-app
npm install
- name: Run lint for nextjs-app
run: cd apps/nextjs-app && npm run lint
run: |
cd apps/nextjs-app
npm run lint
- name: Build
run: npm run build
- name: Build nextjs-app
run: |
cd apps/nextjs-app
npm run build

0 comments on commit 1ad1a09

Please sign in to comment.