Skip to content

Commit

Permalink
Merge pull request #1152 from ryoppippi/fix-ci
Browse files Browse the repository at this point in the history
fix(ci): use `lts/*` instead of 20.x
  • Loading branch information
samchon authored Dec 31, 2024
2 parents c76cf0e + edb8165 commit 80fd500
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ on:
jobs:
Ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, lts/*]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v2
with:
version: 8
Expand All @@ -28,4 +31,4 @@ jobs:

- name: test
working-directory: ./test
run: pnpm install && npm start -- --skipBuild
run: pnpm install && npm start -- --skipBuild
4 changes: 2 additions & 2 deletions .github/workflows/migrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: lts/*
- uses: pnpm/action-setup@v2
with:
version: 8
Expand All @@ -28,4 +28,4 @@ jobs:

- name: test
working-directory: ./packages/migrate
run: npm run test
run: npm run test
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: lts/*
registry-url: https://registry.npmjs.org/
- uses: pnpm/action-setup@v2
with:
Expand All @@ -28,4 +28,4 @@ jobs:
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: ./website/out
folder: ./website/out
4 changes: 2 additions & 2 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: lts/*
- uses: pnpm/action-setup@v2
with:
version: 8
Expand All @@ -27,4 +27,4 @@ jobs:
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: ./website/out
folder: ./website/out

0 comments on commit 80fd500

Please sign in to comment.