From bc99af31e99ab8cc3689f05bfa5853ca8d7f4ac2 Mon Sep 17 00:00:00 2001 From: Nikita Karamov Date: Sat, 2 Sep 2023 23:45:46 +0200 Subject: [PATCH] Simplify GH Actions --- .github/workflows/check.yml | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 228d29a..5eae7d8 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -25,31 +25,8 @@ jobs: - name: Use latest Node.js uses: actions/setup-node@v3 with: - node-version: 20 + node-version: 18 cache: "pnpm" - run: pnpm install - run: pnpm check - - build: - needs: check - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: - - 16 - - 18 - - 20 - - steps: - - uses: actions/checkout@v3 - - uses: pnpm/action-setup@v2 - with: - version: 8 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - cache: "pnpm" - - run: pnpm install - run: pnpm build