Skip to content

Commit

Permalink
chore: use vitest, improve ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Uzlopak committed Jul 19, 2024
1 parent 99a836f commit 53861e5
Show file tree
Hide file tree
Showing 8 changed files with 2,001 additions and 3,999 deletions.
40 changes: 32 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,32 @@ name: Test
- opened
- synchronize
jobs:
test_matrix:
browser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Use Node.js LTS
uses: actions/setup-node@v4
with:
node-version: lts
cache: npm
- run: npm ci
- run: npm test:browser

deno:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- run: npm ci
- run: npm test:deno

node:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node_version:
- 18
Expand All @@ -23,16 +46,17 @@ jobs:
with:
node-version: ${{ matrix.node_version }}
cache: npm
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- run: npm ci
- run: npm test
test:
- run: npm test:node

summary:
runs-on: ubuntu-latest
needs: test_matrix
needs:
- node
- deno
- browser
steps:
- run: exit 1
if: ${{ needs.test_matrix.result != 'success' }}
if: ${{ needs.node.result != 'success' || needs.browser.result != 'success' || needs.deno.result != 'success' }}
- run: echo ok
if: ${{ always() }}
Loading

0 comments on commit 53861e5

Please sign in to comment.