Skip to content

build(deps-dev): bump @typescript-eslint/parser from 7.11.0 to 7.14.1 #22

build(deps-dev): bump @typescript-eslint/parser from 7.11.0 to 7.14.1

build(deps-dev): bump @typescript-eslint/parser from 7.11.0 to 7.14.1 #22

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- main
- develop
jobs:
build-and-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Run lint and build
run: |
npm run lint &
npm run build &
wait