Skip to content

chore(deps): update eslint monorepo #4063

chore(deps): update eslint monorepo

chore(deps): update eslint monorepo #4063

Workflow file for this run

name: Lint
on:
push:
pull_request_target:
workflow_dispatch:
permissions: write-all
jobs:
format:
name: Format
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
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/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version-file: package.json
cache: npm
- name: Install
run: npm ci
- name: Bump Twemoji
run:
npm pkg set dependencies.@twemoji/parser="<=$(npm show @discordapp/twemoji
version)"
- 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/git-auto-commit-action@e348103e9026cc0eee72ae06630dbe30c8bf7a79 # v5.1.0
with:
commit_message: Format
analyze:
name: Analyze
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: ${{github.head_ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Setup CodeQL
uses: github/codeql-action/init@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
with:
languages: javascript
queries: security-and-quality
- name: Analyze
uses: github/codeql-action/analyze@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # v3.28.1
build:
name: Build & Test
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: ${{github.head_ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Setup Node.JS
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version-file: package.json
cache: npm
- name: Install
run: npm ci
- name: Build & Test
run: node --run test
lint:
name: Lint
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: ${{github.head_ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Setup Node.JS
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version-file: package.json
cache: npm
- name: Install
run: npm ci
- name: Lint
run: node --run lint