Skip to content

Commit

Permalink
update CI to use pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
sdankel committed Oct 15, 2024
1 parent e3da112 commit d371483
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ jobs:
- uses: actions/checkout@v2
- name: Run eslint
run: |
cd app && npm install
npm run lint-check
cd app && pnpm install
pnpm lint-check
prettier-check:
needs: cancel-previous-runs
Expand All @@ -143,8 +143,8 @@ jobs:
- uses: actions/checkout@v2
- name: Run prettier
run: |
cd app && npm install
npm run format-check
cd app && pnpm install
pnpm format-check
frontend-build-and-test:
if: github.ref != 'refs/heads/master'
Expand Down Expand Up @@ -192,9 +192,9 @@ jobs:
CI: true
run: |
cd app
npm ci
npm run build
npm run test
pnpm ci
pnpm build
pnpm test
deploy:
if: github.ref == 'refs/heads/master'
Expand Down

0 comments on commit d371483

Please sign in to comment.