Bumps the actions-minor group with 3 updates in the / directory: [ruby/setup-ruby](https://github.com/ruby/setup-ruby), [super-linter/super-linter](https://github.com/super-linter/super-linter) and [actions/publish-action](https://github.com/actions/publish-action). Updates `ruby/setup-ruby` from 1.268.0 to 1.269.0 - [Release notes](https://github.com/ruby/setup-ruby/releases) - [Changelog](https://github.com/ruby/setup-ruby/blob/master/release.rb) - [Commits](8aeb6ff803...d697be2f83) Updates `super-linter/super-linter` from 8.0.0 to 8.3.0 - [Release notes](https://github.com/super-linter/super-linter/releases) - [Changelog](https://github.com/super-linter/super-linter/blob/main/CHANGELOG.md) - [Commits](5119dcd801...502f4fe48a) Updates `actions/publish-action` from 0.3.0 to 0.4.0 - [Commits](https://github.com/actions/publish-action/compare/v0.3.0...v0.4.0) --- updated-dependencies: - dependency-name: ruby/setup-ruby dependency-version: 1.269.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-minor - dependency-name: super-linter/super-linter dependency-version: 8.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-minor - dependency-name: actions/publish-action dependency-version: 0.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-minor ... Signed-off-by: dependabot[bot] <support@github.com>
55 lines
1.3 KiB
YAML
55 lines
1.3 KiB
YAML
name: Lint Codebase
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: read
|
|
statuses: write
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint Codebase
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
id: checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Node.js
|
|
id: setup-node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: .node-version
|
|
cache: npm
|
|
|
|
- name: Install Dependencies
|
|
id: install
|
|
run: npm ci
|
|
|
|
- name: Lint Codebase
|
|
id: super-linter
|
|
uses: super-linter/super-linter/slim@61abc07d755095a68f4987d1c2c3d1d64408f1f9
|
|
env:
|
|
DEFAULT_BRANCH: main
|
|
FILTER_REGEX_EXCLUDE: dist/**/*
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
LINTER_RULES_PATH: ${{ github.workspace }}
|
|
VALIDATE_ALL_CODEBASE: true
|
|
VALIDATE_JAVASCRIPT_ES: false
|
|
VALIDATE_JAVASCRIPT_STANDARD: false
|
|
VALIDATE_JSCPD: false
|
|
VALIDATE_TYPESCRIPT_ES: false
|
|
VALIDATE_JSON: false
|
|
VALIDATE_TYPESCRIPT_STANDARD: false
|
|
VALIDATE_GITHUB_ACTIONS: false # false until linter schemas are updated to include the models permission
|