Skip to content

Commit

Permalink
fix(ci): remove duplicate pnpm version
Browse files Browse the repository at this point in the history
  • Loading branch information
bastienwirtz committed Oct 16, 2024
1 parent 99697a6 commit aac5885
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 15 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,19 @@ on:

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: pnpm setup
uses: pnpm/action-setup@v4
with:
version: 9
-
name: Use Node.js ${{ matrix.node-version }}
name: Node.js setup
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: 22
cache: 'pnpm'
-
name: install dependencies
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@ jobs:
-
name: pnpm setup
uses: pnpm/action-setup@v4
with:
version: 9
-
name: Use Node.js 20
name: Node.js setup
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
cache: 'pnpm'
-
name: Build project
Expand Down

0 comments on commit aac5885

Please sign in to comment.