Skip to content

Commit

Permalink
Merge branch 'master' into propagate-aggregate-error
Browse files Browse the repository at this point in the history
  • Loading branch information
nwalters512 committed Nov 1, 2023
2 parents 9436c1c + 8610499 commit 40e701b
Show file tree
Hide file tree
Showing 3 changed files with 512 additions and 312 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ permissions:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 20
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v2
Expand All @@ -38,19 +42,18 @@ jobs:
fail-fast: false
matrix:
node:
- 12
- 14
- 16
- 17
- 18
- 20
os: [ubuntu-latest]
browser:
- FirefoxHeadless
include:
- os: macos-latest
node: 16
node: 20
browser: FirefoxHeadless
- os: windows-latest
node: 16
node: 20
browser: FirefoxHeadless

steps:
Expand All @@ -75,17 +78,17 @@ jobs:
run: npm test

- name: Run browser tests
if: matrix.node == 16
if: matrix.node == 20
run: npm run mocha-browser-test -- --browsers ${{ matrix.browser }} --timeout 10000
env:
DISPLAY: :99.0

- name: Coverage
if: matrix.os == 'ubuntu-latest' && matrix.node == '16'
if: matrix.os == 'ubuntu-latest' && matrix.node == '20'
run: npm run coverage && npx nyc report --reporter=lcov

- name: Coveralls
if: matrix.os == 'ubuntu-latest' && matrix.node == '16'
if: matrix.os == 'ubuntu-latest' && matrix.node == '20'
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit 40e701b

Please sign in to comment.