From 41e73c522ed5651eb68fe935e50244353aa908b9 Mon Sep 17 00:00:00 2001 From: droganov Date: Tue, 30 Apr 2024 18:58:34 +0200 Subject: [PATCH] simplify github actions --- .github/workflows/test.yml | 30 +----------------------------- 1 file changed, 1 insertion(+), 29 deletions(-) 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