Skip to content
Merged
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
36 changes: 36 additions & 0 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: PR Checks

on:
pull_request:
push:
branches: [ "main" ]

jobs:
build:
name: Build
runs-on: ubuntu-24.04 # Pin to LTS version (avoid latest to prevent unexpected issues)

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

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Build
run: npm run build

test:
name: Test
runs-on: ubuntu-24.04
needs: build

steps:
- name: Run unit tests
run: echo "Tests will run here"
Loading