From ace4a7059b5e16c5c4c9ce3f73cbc39bb4602532 Mon Sep 17 00:00:00 2001 From: Kirk Lin Date: Wed, 17 Apr 2024 22:30:43 +0800 Subject: [PATCH] ci: fix node version --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c8c774f..dccd774 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: - name: Set node uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: lts/* cache: pnpm - name: Setup @@ -44,7 +44,7 @@ jobs: - name: Set node uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: lts/* cache: pnpm - name: Setup @@ -61,7 +61,7 @@ jobs: strategy: matrix: - node: [16.x, 18.x, 20.x] + node: [lts/*] os: [ubuntu-latest, windows-latest, macos-latest] fail-fast: false