Skip to content

Refactoring and units #23

Refactoring and units

Refactoring and units #23

Workflow file for this run

name: lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
- name: Install Dependencies
run: npm ci
- name: Lint
run: npx ng lint
- name: Prettier Check
run: npx prettier . --check