Skip to content

ci: verify generated type definitions in CI and release gates #905

ci: verify generated type definitions in CI and release gates

ci: verify generated type definitions in CI and release gates #905

Workflow file for this run

name: Automated tests
on: [push, pull_request]
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run tests
run: npm test
- name: Verify type definitions
run: npm run test:types:all