Skip to content

Commit

Permalink
Merge pull request samchon#1414 from ryoppippi/feature/ci
Browse files Browse the repository at this point in the history
feat(ci): update node versions
  • Loading branch information
samchon authored Dec 13, 2024
2 parents 8285dcc + a2cd549 commit 0e7b90a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: lts/*
- uses: actions/cache@v4
with:
path: ~/.npm
Expand All @@ -42,11 +42,14 @@ jobs:
NodeJS:
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: actions/cache@v4
with:
path: ~/.npm
Expand All @@ -64,7 +67,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: lts/*
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
Expand Down

0 comments on commit 0e7b90a

Please sign in to comment.