From 832323dd884afce3787a4c857b2b2356be5d6aae Mon Sep 17 00:00:00 2001 From: maxam2017 Date: Sat, 17 Feb 2024 05:05:09 +0800 Subject: [PATCH] fix: fix pr ci --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 177d9c5e1..51737f29a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,17 +7,17 @@ on: jobs: test: - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest strategy: matrix: - os: [ubuntu-latest] - fail-fast: false - + node_version: [20.x] steps: - - id: checkout - name: Checkout - uses: actions/checkout@v4 + - uses: actions/checkout@v4 + - name: Use Node.js ${{ matrix.node_version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node_version }} - id: install-deps name: Install dependencies run: |