From 30c54f21f220b29dd56b947175bbdc341634be55 Mon Sep 17 00:00:00 2001 From: Alex Beimler Date: Mon, 17 Apr 2023 14:49:28 +0200 Subject: [PATCH] ci: fix CI script --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 292f236c..f9acd515 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -71,7 +71,7 @@ jobs: # uses: mxschmitt/action-tmate@v3 - name: Test - if: "${{ !contains(github.event.head_commit.message, '[skip test]') && !${{ matrix.skip_test }} }}" + if: "${{ !contains(github.event.head_commit.message, '[skip test]') && !matrix.skip_test }}" run: | pnpm run test continue-on-error: ${{ contains(matrix.os, 'ubuntu-18.04') }}