chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.31.1 to 8.46.2 #306
This file contains hidden or 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: 'CI' | |
| on: # rebuild any PRs and main branch changes | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: {} | |
| jobs: | |
| build: # make sure build/ci work properly | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| with: | |
| node-version-file: package.json | |
| - run: | | |
| npm ci | |
| npm run all | |
| - run: | | |
| git diff --exit-code ':!dist/index.js.map' ':!badges/coverage.svg' | |
| test: # make sure the action works on a clean machine without building | |
| runs-on: ${{ matrix.os }} | |
| permissions: | |
| contents: read | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| env: | |
| RUNNER_DEBUG: 1 | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: ./ | |
| with: | |
| version: 'latest' | |
| - name: Get the version | |
| run: vals version | |
| - uses: ./ | |
| with: | |
| version: v0.40.0 | |
| - name: Get the version | |
| run: vals version | grep 0.40.0 | |
| - uses: ./ | |
| with: | |
| version: 0.28.0 | |
| - name: Get the version | |
| run: vals version | grep 0.28.0 | |
| super-lint: | |
| name: super-lint | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Lint Code Base | |
| uses: super-linter/super-linter/slim@4e8a7c2bf106c4c766c816b35ec612638dc9b6b2 # v7.3.0 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| MULTI_STATUS: false | |
| LINTER_RULES_PATH: . | |
| VALIDATE_ALL_CODEBASE: true | |
| VALIDATE_BASH: true | |
| VALIDATE_BASH_EXEC: true | |
| VALIDATE_ENV: true | |
| VALIDATE_GITHUB_ACTIONS: true | |
| VALIDATE_HTML: true | |
| VALIDATE_NATURAL_LANGUAGE: true | |
| VALIDATE_SHELL_SHFMT: true | |
| VALIDATE_XML: true | |
| VALIDATE_YAML: true |