mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-29 07:34:07 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
612 B
YAML
26 lines
612 B
YAML
name: Lint Checks
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [main, 'release/v*']
|
|
pull_request:
|
|
branches: [main, 'release/v*']
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint Check
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
|
|
- name: Setup Node Dependencies
|
|
uses: ./.github/actions/common/setup-node-deps
|
|
with:
|
|
skip-build: 'true'
|
|
|
|
- name: Lint Check
|
|
run: npm run lint
|
|
env:
|
|
ESLINT_PLUGIN_DIFF_COMMIT: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref || 'main' }} |