From 9bdeddd7467fd0d1a9d1361e39f285f3d2f5b1a9 Mon Sep 17 00:00:00 2001 From: Matthias Osswald Date: Fri, 5 Apr 2024 08:40:25 +0200 Subject: [PATCH] ci: Skip test-build in test matrix The "test-build" script compiles the code to check for TypeScript compilation errors. This is not specific to Node.js / OS and can therefore be skipped in the matrix. It is also no prerequisite for running the unit tests, as ava compiles them on-the-fly. The "test-build" script is still part of the ci.yml workflow. --- .github/workflows/test.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fe90cb0e1..e98d985ef 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,8 +28,5 @@ jobs: - name: Install dependencies run: npm ci - - name: Perform build - run: npm run build-test - - name: Run unit tests run: npm run unit