chore(deps): update jest monorepo to v30 (major) #139
Workflow file for this run
This file contains hidden or 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: Test and Build | |
on: | |
push: | |
branches: | |
- next | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
- name: Install | |
run: npm install | |
env: | |
CI: true | |
- name: Typecheck | |
run: npm run typecheck | |
- name: Test | |
run: npm test | |
- name: Specs | |
run: npm run specs | |
- name: Build | |
run: npm run build | |
- name: Benchmark | |
run: npm run benchmark -- --example | |
- name: Create build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
path: dist/ | |
name: dist | |