Skip to content

Commit

Permalink
chore: add test on windows (#10058)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode authored Dec 25, 2024
1 parent 416dd8b commit c786189
Show file tree
Hide file tree
Showing 3 changed files with 1,823 additions and 1,958 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,19 @@ on:
jobs:
test:
if: ${{ !contains(github.head_ref, 'release/') }}
runs-on: ubuntu-latest
name: Unit tests
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
name: Unit tests (${{ matrix.os }})
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/setup/[email protected]
- uses: taiga-family/ci/actions/setup/[email protected]
- run: npm test
- run: tree -L 2 ./coverage -P 'lcov.info'
- uses: codecov/[email protected]
if: ${{ matrix.os == 'ubuntu-latest' }}
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
Expand Down
Loading

0 comments on commit c786189

Please sign in to comment.