Skip to content

Refactor/module 001 align architecture csr #11

Refactor/module 001 align architecture csr

Refactor/module 001 align architecture csr #11

Workflow file for this run

name: CI - PR Validation
on:
pull_request:
branches: [develop]
permissions:
contents: read
jobs:
validate:
name: CI - PR Validation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: package-lock.json
- name: Install
run: npm ci
- name: Format (check)
run: npm run format:write
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test
- name: Build
run: npm run build