chore(deps): update npm to v10.9.0 #1456
Workflow file for this run
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 | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ "main" ] | |
schedule: | |
- cron: '45 15 * * 4' | |
permissions: | |
contents: read | |
security-events: write | |
actions: write # This is needed for pull requests to delete | |
jobs: | |
# ESLint is a tool for identifying and reporting on patterns | |
# found in ECMAScript/JavaScript code. | |
# More details at https://github.com/eslint/eslint | |
# and https://eslint.org | |
eslint: | |
name: ESLint ✨ | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [21.3.0] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install NPM/ Node ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "npm" | |
- name: Install Dependencies | |
run: npm install --immutable | |
- name: Run ESLint | |
run: npm run lint:ci | |
- name: Check Lint Status | |
if: always() | |
run: | | |
# failure if one or more lint jobs exit without "success"/"skipped" status | |
if echo "$LINT_RESULTS" | jq -r '.[].result' | grep -v 'success' | grep -q -v 'skipped'; then | |
echo "lint failure" | |
exit 1 | |
fi | |
exit 0 | |
env: | |
LINT_RESULTS: ${{ toJson(needs) }} |