Skip to content

Commit

Permalink
ci:setup pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremycolin committed Aug 31, 2024
1 parent 8745ec4 commit d4883fa
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,23 @@ concurrency:
jobs:
ci:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"

- name: Use Node.js
uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit d4883fa

Please sign in to comment.