Skip to content

chore(deps-dev): bump the eslint group across 1 directory with 4 updates #320

chore(deps-dev): bump the eslint group across 1 directory with 4 updates

chore(deps-dev): bump the eslint group across 1 directory with 4 updates #320

Workflow file for this run

name: Test
on:
- push
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
- 20.x
- 22.x
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install node.js v${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm install
- name: Run tsc
run: npm run prestart
- name: Run eslint
run: npm run lint
- name: Run tests
run: npm run test