From afab63551b3d150a086e73a8b7240e69e149551e Mon Sep 17 00:00:00 2001 From: Lei Chen Date: Sun, 20 Aug 2023 09:51:35 +0800 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b0c42cb67..480fb1b4e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: # Test all mainstream operating system - os: [ubuntu-latest, macos-latest, windows-latest] + os: [windows-latest] node: [18] runs-on: ${{ matrix.os }} steps: @@ -34,22 +34,3 @@ jobs: run: cd packages/less && npm run grunt - name: Run unit test run: npm run test - - fast_node_test: - name: 'Tests on ${{matrix.os}} with node${{matrix.node}}' - strategy: - matrix: - os: [ubuntu-latest] - node: [10, 12, 14, 16, 19] - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node }} - - name: Install npm dependencies - run: npm install - - name: Print put node & npm version - run: node --version && npm --version - - name: Run unit test - run: npm run test