npm(deps-dev): bump the typescript-eslint group across 1 directory wi… #829
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Lint Code Base | |
on: # yamllint disable-line rule:truthy | |
push: null | |
pull_request: null | |
jobs: | |
build: | |
name: Lint | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
# To report GitHub Actions status checks | |
statuses: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
# super-linter needs the full git history to get the | |
# list of files that changed across commits | |
fetch-depth: 0 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Cache node modules | |
uses: actions/cache@v4.0.2 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install dependencies | |
run: npm ci | |
- name: Super-linter | |
uses: super-linter/super-linter/slim@v5 # x-release-please-version | |
env: | |
DEFAULT_BRANCH: main | |
JAVASCRIPT_ES_CONFIG_FILE: .eslintrc.yml | |
LINTER_RULES_PATH: / | |
VALIDATE_ALL_CODEBASE: true | |
VALIDATE_JAVASCRIPT_ES: true | |
# To report GitHub Actions status checks | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |