Fix multiline styles for CSP and fix add to ignore @vueuse #53
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: "Check Pull Requests" | |
on: | |
pull_request: | |
types: [ "opened", "edited", "reopened", "synchronize" ] | |
jobs: | |
check_pull_request: | |
name: Check pull request | |
concurrency: | |
group: ${{ github.head_ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm ci | |
- name: Run type check | |
run: npm run type-check | |
- name: Run lint | |
run: npm run lint | |
- name: Run prettier | |
run: npm run format -- --check | |
- name: Run tests | |
run: npm run test:unit -- --run | |
- name: Install Playwright Browsers | |
run: npx playwright install --with-deps | |
- name: Run e2e tests | |
run: npm run test:e2e |