Skip to content

chore(deps): update dependency @types/node to v20.17.6 - autoclosed #650

chore(deps): update dependency @types/node to v20.17.6 - autoclosed

chore(deps): update dependency @types/node to v20.17.6 - autoclosed #650

Workflow file for this run

---
name: Linting suite
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- name: Repository checkout
uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install
run: yarn install
- name: Prettier
run: yarn run format-check
differential-shellcheck:
name: Differential ShellCheck
runs-on: ubuntu-latest
steps:
- name: Repository checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- id: ShellCheck
name: Differential ShellCheck
uses: redhat-plumbers-in-action/differential-shellcheck@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
- if: ${{ always() }}
name: Upload artifact with ShellCheck defects in SARIF format
uses: actions/upload-artifact@v4
with:
name: Differential ShellCheck SARIF
path: ${{ steps.ShellCheck.outputs.sarif }}