From 817648140748915292497246ea6ea6fd72fb377d Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Wed, 9 Apr 2025 13:32:24 +0200 Subject: [PATCH] ci: remove node.js version matrix We only check if the TypeScript successfully compiles & lints, which isn't really dependent on Node.js version. --- .github/workflows/build.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5decfe6d..211a31c9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,16 +5,11 @@ on: jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - version: [18, 20, 22] steps: - name: Checkout uses: actions/checkout@v4.1.2 - name: Setup Node.js environment uses: actions/setup-node@v4.0.2 - with: - node-version: ${{ matrix.version }} - run: npm ci - run: cp config.json.example config.json - run: npm run verify