Export all types, but better this time #4
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: 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 |