Skip to content

CI: This is just a ci test pr #75

CI: This is just a ci test pr

CI: This is just a ci test pr #75

Workflow file for this run

name: CI
on:
pull_request:
branches: ['main', 'develop']
types: [opened, synchronize, reopened]
jobs:
validate:
name: Validate PR (Lint, Test, Build)
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
node-version: '20'
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Check Formatting
run: npx prettier --check .
- name: Linting
run: npm run lint
- name: Unit Tests
run: npm run test
- name: Build Verification
run: npm run build