Skip to content

fix: improve JWT signing error handling and response parsing in insta… #13

fix: improve JWT signing error handling and response parsing in insta…

fix: improve JWT signing error handling and response parsing in insta… #13

Workflow file for this run

name: CI
on:
pull_request:
paths-ignore:
- '**.md'
- 'LICENSE'
- '.github/FUNDING.yml'
push:
branches:
- main
paths-ignore:
- '**.md'
- 'LICENSE'
- '.github/FUNDING.yml'
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Install shellcheck
run: sudo apt-get update -qq && sudo apt-get install -y shellcheck
- name: Run shellcheck on all scripts
run: |
find . -name "*.sh" -not -path "./.git/*" | sort | xargs shellcheck \
--severity=warning \
--exclude=SC2034,SC1091 \
--shell=bash