From 044140691b42a2ffe3042196da22c417d47fe2cc Mon Sep 17 00:00:00 2001 From: Guangcong Luo Date: Sat, 3 May 2025 20:06:17 -0700 Subject: [PATCH] Update Github Actions config --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 641a051..50733cb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,15 +16,15 @@ jobs: strategy: matrix: - node-version: [18.x, 20.x] + node-version: [22.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: Zarel/setup-node@patch-1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - - run: npm install + - run: npm ci - run: npm run test env: CI: true