Skip to content

build(deps-dev): bump typescript-eslint from 8.12.1 to 8.13.0 (#864) #3189

build(deps-dev): bump typescript-eslint from 8.12.1 to 8.13.0 (#864)

build(deps-dev): bump typescript-eslint from 8.12.1 to 8.13.0 (#864) #3189

Workflow file for this run

name: Lint
on:
push:
pull_request_target:
workflow_dispatch:
permissions: write-all
jobs:
format:
name: Format
runs-on: ubuntu-20.04
concurrency: format-${{github.ref}}
steps:
- name: Checkout
uses: actions/[email protected]
with:
token: ${{secrets.TOKEN || secrets.GITHUB_TOKEN}}
ref: ${{github.head_ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Setup Node.JS
uses: actions/[email protected]
with:
node-version: 22.10.0
cache: npm
- name: Install
run: npm ci
- name: Format
run: node --run format
- name: Assert clean
if: startsWith(github.ref_name, 'dependabot/') == true
run: if [[ `git status --porcelain` ]]; then exit 1; fi
- name: Commit
uses: stefanzweifel/[email protected]
with:
commit_message: Format
analyze:
name: Analyze
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/[email protected]
with:
ref: ${{github.head_ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Setup CodeQL
uses: github/codeql-action/[email protected]
with:
languages: javascript
queries: security-and-quality
- name: Analyze
uses: github/codeql-action/[email protected]
build:
name: Build & Test
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/[email protected]
with:
ref: ${{github.head_ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Setup Node.JS
uses: actions/[email protected]
with:
node-version: 22.10.0
cache: npm
- name: Install
run: npm ci
- name: Build & Test
run: node --run test
lint:
name: Lint
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/[email protected]
with:
ref: ${{github.head_ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Setup Node.JS
uses: actions/[email protected]
with:
node-version: 22.10.0
cache: npm
- name: Install
run: npm ci
- name: Lint
run: node --run lint