Skip to content

CI: Build Lint Checks #2

CI: Build Lint Checks

CI: Build Lint Checks #2

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: Build the Project
run: npm run build