Skip to content

Commit 941bccc

Browse files
committed
ci: remove ubuntu 18 from CI
1 parent 9976e18 commit 941bccc

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ jobs:
2121
- windows-2019
2222
- ubuntu-22.04
2323
- ubuntu-20.04
24-
- ubuntu-18.04
2524
- macos-12
2625
- macos-11
2726
node:
@@ -63,14 +62,13 @@ jobs:
6362
# uses: mxschmitt/action-tmate@v3
6463

6564
- name: Test
66-
if: "!contains(github.event.head_commit.message, '[skip test]')"
65+
if: "${{ !contains(github.event.head_commit.message, '[skip test]') }}"
6766
run: |
6867
pnpm run test
69-
continue-on-error: ${{ contains(matrix.os, 'ubuntu-18.04') }}
7068
7169
# Create self-contained executable that bundles Nodejs
7270
- name: Create Executable
73-
if: "contains(matrix.os, 'windows-2022') || contains(matrix.os, 'ubuntu-22.04') || contains(matrix.os, 'macos-12')"
71+
if: "${{ contains(matrix.os, 'windows-2022') || contains(matrix.os, 'ubuntu-22.04') || contains(matrix.os, 'macos-12') }}"
7472
run: |
7573
pnpm run pack.exe
7674

0 commit comments

Comments
 (0)