Skip to content

Commit

Permalink
[#54] Test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tednguyendev committed May 24, 2023
1 parent 68339e4 commit db42b09
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/nextjs_12_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@ jobs:
with:
node-version: '16'
cache: 'npm'
cache-dependency-path: 'nextjs-12/package-lock.json'

- name: Install dependencies
run: npm ci
run: 'cd nextjs-12 && npm ci'

- name: Run linter
run: npm run lint
run: 'cd nextjs-12 && npm run lint'

- name: Run unit tests
run: npm run test:coverage
run: 'cd nextjs-12 && npm run test:coverage'

0 comments on commit db42b09

Please sign in to comment.