build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 #320
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 compiled action script CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
compile: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18.x | |
- name: Build Action | |
run: cd action && npm i && npm run all | |
- name: Check if there's a diff | |
run: git diff | |
- name: Verify no unstaged changes | |
run: | | |
if [[ "$(git status --porcelain)" != "" ]]; then | |
echo Unstaged changes detected | |
exit 1 | |
fi | |
- name: Lint Code Base | |
uses: github/super-linter@v4 | |
env: | |
DEFAULT_BRANCH: main | |
VALIDATE_JSON: true |