From 45581b8fcc7dc47ded936a7c1322ed59b3d5d8ad Mon Sep 17 00:00:00 2001 From: julienmalard Date: Tue, 24 Oct 2023 15:49:36 +0200 Subject: [PATCH] Avec pnpm --- .github/workflows/lint.yml | 5 +++++ .github/workflows/release.yml | 4 ++++ .github/workflows/tests.yml | 5 +++++ .github/workflows/typechecking.yml | 5 +++++ 4 files changed, 19 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9390a0df..3446b07c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -39,6 +39,11 @@ jobs: steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + + - uses: pnpm/action-setup@v2.2.4 + with: + version: latest + - uses: actions/setup-node@v4 with: cache: 'pnpm' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e9430231..20466893 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,6 +34,10 @@ jobs: steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: pnpm/action-setup@v2.2.4 + with: + version: latest + - uses: actions/setup-node@v4 with: cache: 'pnpm' diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0d9e542c..5ab347f3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,6 +18,11 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + + - uses: pnpm/action-setup@v2.2.4 + with: + version: latest + - uses: actions/setup-node@v4 with: cache: 'pnpm' diff --git a/.github/workflows/typechecking.yml b/.github/workflows/typechecking.yml index 3e0c9983..8267fa8a 100644 --- a/.github/workflows/typechecking.yml +++ b/.github/workflows/typechecking.yml @@ -15,6 +15,11 @@ jobs: steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + + - uses: pnpm/action-setup@v2.2.4 + with: + version: latest + - uses: actions/setup-node@v4 with: cache: 'pnpm'