Skip to content

Bump the dependencies group with 5 updates #317

Bump the dependencies group with 5 updates

Bump the dependencies group with 5 updates #317

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- uses: actions/cache@v4
with:
path: .eslintcache
key: eslint
restore-keys: |
eslint
- name: Install dependencies
run: npm ci
- name: Run TypeScript compiler
run: npm run tscheck
- name: Run ESLint
run: npm run lint
- name: Run Prettier
run: npm run format:check .