Skip to content

Commit

Permalink
ci: setup latest LTS Node.js
Browse files Browse the repository at this point in the history
  • Loading branch information
sabertazimi authored Dec 10, 2024
1 parent c6ecb33 commit e89b964
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [20]
node-version: [lts/*]
architecture: [x64]
steps:
- name: Checkout repository
Expand All @@ -31,6 +31,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
check-latest: true
architecture: ${{ matrix.architecture }}
registry-url: https://registry.npmjs.org/
cache: 'pnpm'
Expand All @@ -55,7 +56,8 @@ jobs:
- name: Setup Node environment
uses: actions/setup-node@v4
with:
node-version: 20
node-version: lts/*
check-latest: true
architecture: x64
registry-url: https://registry.npmjs.org/
- name: Release to GitHub
Expand Down

0 comments on commit e89b964

Please sign in to comment.