Skip to content

chore(deps): update dependency @typescript-eslint/parser to v8.38.0 (… #566

chore(deps): update dependency @typescript-eslint/parser to v8.38.0 (…

chore(deps): update dependency @typescript-eslint/parser to v8.38.0 (… #566

Workflow file for this run

name: Check compiled action script CI
on:
push:
branches:
- main
pull_request:
jobs:
compile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22.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@v7
env:
DEFAULT_BRANCH: main
VALIDATE_JSON: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}