Skip to content

Commit

Permalink
Use pnpm in ci/cd yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
benvinegar committed Feb 11, 2025
1 parent cf90b43 commit f368ac9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_run:
workflows: [ci]
types: [completed]
branches: [main, v2]
branches: [main, v3]

jobs:
deploy:
Expand All @@ -13,8 +13,8 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: "package.json"
- run: npm install
- run: npx turbo build
- run: pnpm install
- run: pnpm turbo build
- uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: "package.json"
- run: npm install
- run: npx playwright install --with-deps
- run: npx turbo build lint typecheck test-ci --concurrency=1
- run: pnpm install
- run: cd packages/tracker && pnpm playwright install --with-deps
- run: pnpm turbo build lint typecheck test-ci --concurrency=1
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
Expand Down

0 comments on commit f368ac9

Please sign in to comment.