Skip to content

Commit

Permalink
TEST pre-commit workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellmueller committed Nov 29, 2024
1 parent 9c87aa7 commit 21ec8ed
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
- cron: "0 11 * * 0" # 3 AM PST = 12 PM UDT, runs sundays
workflow_dispatch:

permissions: # used for commitlint
contents: read
pull-requests: read

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand Down Expand Up @@ -80,6 +84,31 @@ jobs:
with:
sarif_file: "trivy-results.sarif"

pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install eslint packages
run: npm ci
- uses: actions/setup-python@v1
- name: set PY
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
- uses: actions/cache@v1
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
- uses: pre-commit/action@v1.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}

# commitlint: # Test all commits in PR follow conventional commit format
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: wagoid/commitlint-github-action@v6
# with:
# configFile: '.commitlintrc.yml'

results:
name: Analysis Results
needs: [tests] # Restore trivy when/if fixed
Expand Down

0 comments on commit 21ec8ed

Please sign in to comment.