Update Github Actions config

This commit is contained in:
Guangcong Luo 2025-05-03 20:06:17 -07:00
parent ad696f7295
commit 044140691b

View File

@ -16,15 +16,15 @@ jobs:
strategy: strategy:
matrix: matrix:
node-version: [18.x, 20.x] node-version: [22.x]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
uses: Zarel/setup-node@patch-1 uses: actions/setup-node@v4
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- run: npm install - run: npm ci
- run: npm run test - run: npm run test
env: env:
CI: true CI: true