Skip to content

refactor!: Sync repository #10

refactor!: Sync repository

refactor!: Sync repository #10

Workflow file for this run

name: PR Validation
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- master
jobs:
validate:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: '.node-version'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linting
run: npm run lint
- name: Run tests
run: npm run test
- name: Build library
run: npm run build:lib
- name: Build app
run: npm run build:app