Skip to content

Update dependency typescript-eslint to v8.16.0 #25

Update dependency typescript-eslint to v8.16.0

Update dependency typescript-eslint to v8.16.0 #25

Workflow file for this run

name: Default
on:
- push
jobs:
testAndBuild:
name: Run all linters, tests and run the build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Check Formatting
run: npm run format:check
- name: Run Tests
run: npm run test
- name: Run Build
run: npm run build