ci: don't require benchmarks to pass in CI #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node.js | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
node-version: [21.x, 22.x] | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Prepare environment | |
run: | | |
echo '{ "type": "module" }' > package.json && \ | |
npx jsr add @beast/compat @std/assert | |
- name: Run tests | |
run: | | |
npx --yes tsx --test **/*.test.ts && \ | |
NO_COLOR=1 npx --yes tsx --test **/*.test.ts && \ | |
COLORTERM='' TERM='' npx --yes tsx --test **/*.test.ts |