Bump @types/node from 20.14.11 to 22.2.0 #265
Workflow file for this run
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: Tests | |
on: | |
push: | |
paths-ignore: | |
- 'playground/**' | |
- 'docs/**' | |
jobs: | |
test: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- uses: pnpm/action-setup@v3 | |
with: | |
run_install: true | |
- name: Install Browsers | |
run: pnpm exec playwright install --with-deps | |
- name: Build Package | |
run: pnpm package:build | |
- name: Run Unit Tests | |
run: pnpm test:unit | |
- name: Run e2e Tests | |
run: pnpm test:e2e |