Skip to content

build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.16.1 to 8.19.1 #485

build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.16.1 to 8.19.1

build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.16.1 to 8.19.1 #485

Workflow file for this run

name: 'Build & Test'
env:
HUSKY: 0
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request: null
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'npm'
- name: Install
run: |
npm ci
- name: Format
run: |
npm run format
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'npm'
- name: Install
run: |
npm ci
- name: Lint
run: |
npm run lint
build_and_test:
uses: ./.github/workflows/build-and-test.yml