1
0
Fork 0
mirror of https://github.com/imjasonh/gcp-metrics-action synced 2026-07-15 12:47:55 +00:00
gcp-metrics-action/.github/workflows/pre-commit.yaml
dependabot[bot] 1b80d55600
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [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/v4...v5)

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

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-06 03:32:15 +00:00

23 lines
421 B
YAML

name: pre-commit
on:
pull_request:
branches: [ main ]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: '20'
- run: npm install
- uses: actions/setup-python@v6
with:
python-version: '3.x'
- run: pip install pre-commit
- run: pre-commit run --all-files