Skip to content

Commit

Permalink
Merge pull request #6 from mmorlack/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
matteomorlack authored Aug 3, 2024
2 parents ec35313 + d79a904 commit 80835bc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 18.x
- run: npm install
- run: xvfb-run -a npm test
- name: Install deps
run: npm ci
- name: Run Tests
run: xvfb-run -a npm test
if: runner.os == 'Linux'
- run: npm test
- name: Run Tests
run: npm test
if: runner.os != 'Linux'
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,13 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 18.x
- run: npm install
- run: xvfb-run -a npm test
- name: Install deps
run: npm ci
- name: Run Tests
run: xvfb-run -a npm test
if: runner.os == 'Linux'
- run: npm test
- name: Run Tests
run: npm test
if: runner.os != 'Linux'
- name: Package
if: success() && matrix.os == 'ubuntu-latest'
Expand Down

0 comments on commit 80835bc

Please sign in to comment.