Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: PR checks

on:
pull_request:
branches:
- next

concurrency:
group: pr-checks-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

jobs:
verify:
runs-on: ubuntu-latest
timeout-minutes: 5

strategy:
matrix:
node-version:
- 25.9.0

steps:
- name: Checkout
uses: actions/checkout@v6

- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache-dependency-path: package-lock.json

- name: Install app dependencies
run: npm ci

- name: Lint TypeScript
run: npm run lint-ts-test

- name: Lint SCSS
run: npm run lint-scss-test

- name: Unit tests
run: npm test -- --ci

- name: Production build
run: npm run build