Skip to content

Commit

Permalink
Fix CI tests for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
LeftTwixWand authored Nov 1, 2024
1 parent 89649eb commit efbf823
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,13 @@ jobs:
- name: Build the extension
run: yarn compile

- name: Test the extension
- name: Run test on Linux
run: xvfb-run -a yarn test
if: runner.os == 'Linux'

- name: Run test on other OS
run: yarn test
if: runner.os != 'Linux'

# - name: Package the extension
# run: |
Expand Down

0 comments on commit efbf823

Please sign in to comment.