Skip to content

Add CI workflows (testing & linting) #3

Add CI workflows (testing & linting)

Add CI workflows (testing & linting) #3

Workflow file for this run

name: Static Analysis
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Dependencies
run: |
npm ci
cd server
npm ci
cd ../client
npm ci
cd ..
- name: Run Lint Checks
run: npx eslint .