Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: remove pnpm/action-setup in favor of corepack #222

Merged
merged 2 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix lint
  • Loading branch information
QuentinRoy committed Jan 31, 2024
commit 96459ea078836b07d1d52a9aa2ae3eb657fa0521
8 changes: 4 additions & 4 deletions .github/workflows/node.js.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install Node.js 20.x.x
uses: actions/setup-node@v4
with:
cache: "pnpm"
cache: 'pnpm'
node-version: 20.x.x
- run: pnpm install --frozen-lockfile
- run: pnpm run build-all
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Install Node.js 20.x.x
uses: actions/setup-node@v4
with:
cache: "pnpm"
cache: 'pnpm'
node-version: 20.x.x
- run: pnpm install --frozen-lockfile
- uses: actions/download-artifact@v4
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Install Node.js 20.x.x
uses: actions/setup-node@v4
with:
cache: "pnpm"
cache: 'pnpm'
node-version: 20.x.x
- run: pnpm install --frozen-lockfile
- run: pnpm run lint
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Install Node.js 20.x.x
uses: actions/setup-node@v4
with:
cache: "pnpm"
cache: 'pnpm'
node-version: 20.x.x
- run: pnpm install --frozen-lockfile
- uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install Node.js 20.x.x
uses: actions/setup-node@v4
with:
cache: "pnpm"
cache: 'pnpm'
node-version: 20.x.x
- name: Install dependencies
run: pnpm install
Expand Down