feat: comprehensive npm security audit and Node.js modernization #15515
This file contains hidden or 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: Validate All GitHub Actions | |
on: | |
push: | |
branches: | |
- "master" | |
- "[0-9].[0-9]*" | |
pull_request: | |
types: [synchronize, opened, reopened, ready_for_review] | |
jobs: | |
validate-all-ghas: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup Frontend Environment | |
uses: ./.github/actions/setup-frontend/ | |
with: | |
install-dependencies: 'false' | |
- name: Install Dependencies | |
run: npm install -g @action-validator/core @action-validator/cli --save-dev | |
- name: Run Script | |
run: bash .github/workflows/github-action-validator.sh |