Skip to content

Commit

Permalink
feat: run secretlint in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoppippi committed Nov 7, 2024
1 parent e644ed1 commit 6e7513d
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,21 @@ jobs:
- uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run secretlint
shell: bash
run: pnpm dlx @secretlint/quick-start $(git ls-files)
- name: Run check
run: pnpm check
- name: Run lint
run: |
pnpm lint
pnpm lint:renovate
secretlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Run secretlint
shell: bash
run: npx @secretlint/quick-start ./**/*

0 comments on commit 6e7513d

Please sign in to comment.