mirror of
https://github.com/BloopAI/apple-code-sign-action.git
synced 2026-08-23 12:28:32 +00:00
Bumps [super-linter/super-linter](https://github.com/super-linter/super-linter) from 5 to 7. - [Release notes](https://github.com/super-linter/super-linter/releases) - [Changelog](https://github.com/super-linter/super-linter/blob/main/CHANGELOG.md) - [Commits](https://github.com/super-linter/super-linter/compare/v5...v7) --- updated-dependencies: - dependency-name: super-linter/super-linter dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
43 lines
935 B
YAML
43 lines
935 B
YAML
name: Lint Code Base
|
|
|
|
on: [pull_request, push]
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint Code Base
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: read
|
|
statuses: write
|
|
|
|
steps:
|
|
- name: Checkout
|
|
id: checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
id: setup-node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
cache: npm
|
|
|
|
- name: Install Dependencies
|
|
id: install
|
|
run: npm ci
|
|
|
|
- name: Lint Code Base
|
|
id: super-linter
|
|
uses: super-linter/super-linter/slim@v7
|
|
env:
|
|
DEFAULT_BRANCH: main
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
JAVASCRIPT_DEFAULT_STYLE: prettier
|
|
VALIDATE_CHECKOV: false
|
|
VALIDATE_GITLEAKS: false
|
|
VALIDATE_JSCPD: false
|
|
VALIDATE_MARKDOWN: false
|
|
VALIDATE_NATURAL_LANGUAGE: false
|