build(deps): bump github.com/docker/docker from 24.0.5+incompatible to 25.0.6+incompatible #318
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 |