Skip to content

Commit

Permalink
Update PNPM installation for GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bvaughn committed Aug 14, 2023
1 parent 2cda40e commit a2929c1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
with:
version: 7
- name: Install dependencies
run: pnpm install -r
run: pnpm install --no-frozen-lockfile --recursive
- name: Install Playwright dependencies
run: npx playwright install
- name: Build NPM package
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
with:
version: 7
- name: Install dependencies
run: pnpm install -r
run: pnpm install --no-frozen-lockfile --recursive
- name: Run ESLint
run: pnpm lint
2 changes: 1 addition & 1 deletion .github/workflows/jest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
with:
version: 7
- name: Install dependencies
run: pnpm install -r
run: pnpm install --no-frozen-lockfile --recursive
- name: Build NPM packages
run: pnpm run prerelease
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
with:
version: 7
- name: Install dependencies
run: pnpm install -r
run: pnpm install --no-frozen-lockfile --recursive
- name: Run Prettier
run: pnpm run prettier:ci
2 changes: 1 addition & 1 deletion .github/workflows/typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
with:
version: 7
- name: Install dependencies
run: pnpm install -r
run: pnpm install --no-frozen-lockfile --recursive
- name: Build NPM package
run: pnpm prerelease
- name: Run TypeScript
Expand Down

0 comments on commit a2929c1

Please sign in to comment.