kanidm/.github/workflows/javascript_lint.yml
dependabot[bot] 8ef7d6cb4a
Bump actions/checkout from 2 to 4 in the all group (#3341)
Bumps the all group with 1 update: [actions/checkout](https://github.com/actions/checkout).


Updates `actions/checkout` from 2 to 4
- [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/v2...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-06 13:35:25 +00:00

22 lines
413 B
YAML

---
name: Javascript Linting
"on":
- push
- pull_request
jobs:
javascript_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run ESLint to check Javascript files
run:
make eslint
javascript_fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Prettier to check Javascript files
run:
make prettier