mirror of
https://github.com/apache/superset.git
synced 2026-04-10 11:55:24 +00:00
chore: add a github "action-validator" in CI (#28358)
This commit is contained in:
committed by
GitHub
parent
bbfe5c0ae8
commit
499fb2c631
28
.github/workflows/github-action-validator.yml
vendored
Normal file
28
.github/workflows/github-action-validator.yml
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
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-latest
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '18'
|
||||
|
||||
- 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
|
||||
Reference in New Issue
Block a user