diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e0d2c0c..2002215 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -50,29 +50,3 @@ jobs: run: pnpm install --frozen-lockfile --ignore-scripts - name: Run unit tests run: pnpm unit - old: - runs-on: ubuntu-latest - strategy: - matrix: - node-version: - - 14 - - 12 - - 10 - name: Node.js ${{ matrix.node-version }} Quick - steps: - - name: Checkout the repository - uses: actions/checkout@v4 - - name: Install pnpm - uses: pnpm/action-setup@v1 - with: - version: 3 - env: - ACTIONS_ALLOW_UNSECURE_COMMANDS: true - - name: Install Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - name: Install dependencies - run: pnpm install --no-frozen-lockfile --ignore-scripts - - name: Run unit tests - run: pnpm unit