Skip to content

CI: Build Lint Checks #1

CI: Build Lint Checks

CI: Build Lint Checks #1

Workflow file for this run

name: CI - Lint and Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Run Linting
run: npm run lint
- name: Run Tests
run: npm test
- name: Run Tests with Coverage
run: npm run test:coverage
- name: Build the Project
run: npm run build