Skip to content

Add a hint for users who click on "disable internet" #54

Add a hint for users who click on "disable internet"

Add a hint for users who click on "disable internet" #54

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