Skip to content

chore(deps): bump @typescript-eslint/eslint-plugin from 7.7.0 to 7.8.0 #82

chore(deps): bump @typescript-eslint/eslint-plugin from 7.7.0 to 7.8.0

chore(deps): bump @typescript-eslint/eslint-plugin from 7.7.0 to 7.8.0 #82

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@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run Linters
run: npm run lint
# cancel the jobs if another workflow is kicked off for the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true