Skip to content

Commit

Permalink
ubuntu only
Browse files Browse the repository at this point in the history
  • Loading branch information
chdsbd committed Jun 2, 2024
1 parent f7d17fa commit 5d082ce
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,13 @@ on:

jobs:
test:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests ${{ matrix.os }}
if: runner.os == 'Linux'
- name: Run tests
run: xvfb-run -a npm test
- name: Run tests ${{ matrix.os }}
if: runner.os != 'Linux'
run: yarn test

0 comments on commit 5d082ce

Please sign in to comment.