Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugos68 committed Jan 21, 2025
1 parent 688b896 commit f659800
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
node-version: [22]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
Expand All @@ -22,7 +22,6 @@ jobs:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: lts
cache: "pnpm"
- name: Install dependencies
run: pnpm install
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
Expand All @@ -14,14 +17,16 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: lts
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run check
run: pnpm check
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
Expand All @@ -30,7 +35,6 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: lts
cache: "pnpm"
- name: Install dependencies
run: pnpm install
Expand Down

0 comments on commit f659800

Please sign in to comment.