Skip to content

chore(deps-dev): bump @typescript-eslint/parser from 8.16.0 to 8.18.1 #51

chore(deps-dev): bump @typescript-eslint/parser from 8.16.0 to 8.18.1

chore(deps-dev): bump @typescript-eslint/parser from 8.16.0 to 8.18.1 #51

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: ["lts/*"]
fail-fast: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Cache Node.js modules
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint
- name: Run test
run: npm run test
- name: Run build
run: npm run build