Skip to content

Export all types, but better this time #4

Export all types, but better this time

Export all types, but better this time #4

Workflow file for this run

name: PR CI
on:
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- README.md
- LICENSE
- .gitignore
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- run: npm i
- run: npm run check:all
build:
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- run: npm i
- run: npm run build
test:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- run: npm i
- run: npx playwright install
- run: npm run test