Full CI/CD Pipeline #4
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: CI/CD Status | |
run-name: Full CI/CD Pipeline | |
on: | |
push: | |
branches: ["main"] | |
paths-ignore: | |
- "*.md" # ignore all markdown files at root | |
- "*.js" # ignore all js files at root | |
- "*.ts" # ignore all ts files at root | |
- ".github/**/*.md" # ignore markdown files for .github | |
- ".eslintrc" # ignore eslint changes | |
- ".gitignore" # ignore git ignore changes | |
pull_request: | |
branches: ["main"] | |
paths-ignore: | |
- "*.md" # ignore all markdown files at root | |
- "*.js" # ignore all js files at root | |
- "*.ts" # ignore all ts files at root | |
- ".github/**/*.md" # ignore markdown files for .github | |
- ".eslintrc" # ignore eslint changes | |
- ".gitignore" # ignore git ignore changes | |
workflow_dispatch: | |
jobs: | |
trigger-full-ci: | |
name: CI | |
uses: ./.github/workflows/lint-and-build.yml | |
with: | |
node-version: "22.4.1" |