fix: stop the service in case the secret keys are not created or the kid is not set in the well-know #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🐚 check | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "scripts/**" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "scripts/**" | |
permissions: | |
contents: read | |
jobs: | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: ShellCheck | |
uses: ludeeus/action-shellcheck@master | |
with: | |
scandir: './scripts' | |
severity: warning |