Skip to content

Commit

Permalink
chore: use vitest, improve ci (#283)
Browse files Browse the repository at this point in the history
* chore: use vitest, improve ci

* upgrade deno tests

* run the scripts

* try to fix ci

* fix deno, add coverage module (d'oh')

* remove glob as esbuild comes with its own glob parser

* add lint

* make lint mandatory, update deps

* pin to 22.4.1

* will renaming summary back to test fix it?
  • Loading branch information
Uzlopak authored Jul 19, 2024
1 parent 99a836f commit 9e1bd97
Show file tree
Hide file tree
Showing 10 changed files with 3,675 additions and 6,396 deletions.
55 changes: 47 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,70 @@ name: Test
- opened
- synchronize
jobs:
test_matrix:
lint:
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 run lint

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 run build
- run: npm run 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 run build
- run: npm run test:deno

node:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node_version:
- 18
- 20
- 22
- '22.4.1'
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: npm
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- run: npm ci
- run: npm test
- run: npm run test:node

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

0 comments on commit 9e1bd97

Please sign in to comment.