Skip to content

Bump dependencies #2540

Bump dependencies

Bump dependencies #2540

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
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: 20.6.0
cache: npm
- name: Install
run: npm ci
- name: Format
run: npm 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: 20.6.0
cache: npm
- name: Install
run: npm ci
- name: Build & Test
run: npm 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: 20.6.0
cache: npm
- name: Install
run: npm ci
- name: Lint
run: npm run lint