Skip to content

Commit

Permalink
🚀 Update deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryScaletta committed Nov 8, 2023
1 parent bdd462b commit 66631e9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,17 @@ jobs:
- name: Begin CI...
uses: actions/checkout@v2

- name: Install dependencies (with cache)
uses: bahmutov/npm-install@v1
- name: Install pnpm
run: corepack prepare pnpm@latest --activate

- name: Install dependencies
run: pnpm i

- name: Test
run: yarn test --ci --coverage --maxWorkers=2
run: pnpm test --ci --coverage --maxWorkers=2

- name: Build
run: yarn build
run: pnpm build
env:
NEXT_PUBLIC_GA_MEASUREMENT_ID: ${{ secrets.GA_MEASUREMENT_ID }}

Expand Down

0 comments on commit 66631e9

Please sign in to comment.