Skip to content

Add CI workflows (testing & linting) #1

Add CI workflows (testing & linting)

Add CI workflows (testing & linting) #1

Workflow file for this run

name: Static Analysis
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
strategy:
fail-fast: false #ensure both tests run even if one fails
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Dependencies
run: npm ci
- name: Run Lint Checks
run: npx eslint .