From 941bccce950e388be7d0de54081c84a74d44d8f9 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Fri, 21 Apr 2023 11:22:13 -0700 Subject: [PATCH] ci: remove ubuntu 18 from CI --- .github/workflows/CI.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index bc30bc02..ce8b95dd 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -21,7 +21,6 @@ jobs: - windows-2019 - ubuntu-22.04 - ubuntu-20.04 - - ubuntu-18.04 - macos-12 - macos-11 node: @@ -63,14 +62,13 @@ jobs: # uses: mxschmitt/action-tmate@v3 - name: Test - if: "!contains(github.event.head_commit.message, '[skip test]')" + if: "${{ !contains(github.event.head_commit.message, '[skip test]') }}" run: | pnpm run test - continue-on-error: ${{ contains(matrix.os, 'ubuntu-18.04') }} # Create self-contained executable that bundles Nodejs - name: Create Executable - if: "contains(matrix.os, 'windows-2022') || contains(matrix.os, 'ubuntu-22.04') || contains(matrix.os, 'macos-12')" + if: "${{ contains(matrix.os, 'windows-2022') || contains(matrix.os, 'ubuntu-22.04') || contains(matrix.os, 'macos-12') }}" run: | pnpm run pack.exe