Skip to content

Commit

Permalink
fix(workflows/linter): generate keys using bun
Browse files Browse the repository at this point in the history
  • Loading branch information
weiland committed Jul 2, 2024
1 parent a300eb9 commit 875b33f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,14 @@ jobs:
if: inputs.install-all != true && inputs.use-bun != true
run: yarn install

- name: 🔑 Generate dummy keys
if: inputs.generate-keys == true
- name: 🔑 Generate dummy keys (via yarn)
if: inputs.generate-keys == true && inputs.use-bun != true
run: yarn keys:generate

- name: 🔑 Generate dummy keys (via bun)
if: inputs.generate-keys == true && inputs.use-bun == true
run: bun run keys:generate

- name: 📚 Lint Code Base
uses: docker://github/super-linter:v4
with:
Expand Down

0 comments on commit 875b33f

Please sign in to comment.