diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7967b7e..0f39f01 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 20 - uses: pnpm/action-setup@v2 name: Install pnpm @@ -28,31 +28,3 @@ jobs: env: FORCE_COLOR: 2 NEXT_TELEMETRY_DISABLED: 1 - short: - runs-on: ubuntu-latest - strategy: - matrix: - node-version: - - 17 - - 16 - name: Node.js ${{ matrix.node-version }} Quick - steps: - - name: Checkout the repository - uses: actions/checkout@v2 - - name: Install Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node-version }} - - uses: pnpm/action-setup@v2 - name: Install pnpm - id: pnpm-install - with: - version: 7.5.1 - run_install: false - - name: Install dependencies - run: make i - - name: Build without checks - run: pnpm run build - env: - FORCE_COLOR: 2 - NEXT_TELEMETRY_DISABLED: 1