Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.

Commit 090a47c

Browse files
committed
fix conditions
1 parent e5ca3a8 commit 090a47c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
- run: pnpm i
2828

2929
- name: Test
30-
if: ${{ matrix.os }} == "ubuntu-latest"
30+
if: ${{ matrix.os == 'ubuntu-latest' }}
3131
run: |
3232
export DISPLAY=':99.0'
3333
Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
3434
pnpm test
3535
3636
- name: Unit Test
37-
if: ${{ matrix.os }} != "ubuntu-latest"
37+
if: ${{ matrix.os != 'ubuntu-latest' }}
3838
run: pnpm test-unit

0 commit comments

Comments
 (0)