mirror of
https://github.com/actions/attest-build-provenance.git
synced 2025-12-16 20:30:59 +00:00
Bumps the actions-minor group with 2 updates in the / directory: [super-linter/super-linter](https://github.com/super-linter/super-linter) and [masci/datadog](https://github.com/masci/datadog).
Updates `super-linter/super-linter` from 7.2.1 to 7.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](https://github.com/super-linter/super-linter/compare/v7.2.1...v7.3.0)
Updates `masci/datadog` from 1.7.1 to 1.9.1
- [Release notes](https://github.com/masci/datadog/releases)
- [Commits](a5d283e78e...6889e9d060)
---
updated-dependencies:
- dependency-name: super-linter/super-linter
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: actions-minor
- dependency-name: masci/datadog
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: actions-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
52 lines
1.1 KiB
YAML
52 lines
1.1 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@v4
|
|
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@v7.3.0
|
|
env:
|
|
DEFAULT_BRANCH: main
|
|
FILTER_REGEX_EXCLUDE: dist/**/*
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
TYPESCRIPT_DEFAULT_STYLE: prettier
|
|
VALIDATE_ALL_CODEBASE: true
|
|
VALIDATE_JAVASCRIPT_STANDARD: false
|
|
VALIDATE_TYPESCRIPT_STANDARD: false
|
|
VALIDATE_JSCPD: false
|
|
VALIDATE_YAML_PRETTIER: false
|