Full CI/CD Pipeline #1
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: CI/CD Status | |
run-name: Full CI/CD Pipeline | |
on: | |
push: | |
branches: ["main"] | |
paths-ignore: | |
- "*.md" # ignore all html files at root | |
- "*.js" # ignore all js files at root | |
- "*.ts" # ignore all ts files at root | |
- ".github/**/*.md" # ignore html files for .github | |
- ".eslintrc" # ignore eslint changes | |
- ".gitignore" # ignore git ignore changes | |
pull_request: | |
branches: ["main"] | |
paths-ignore: | |
- "*.md" # ignore all html files at root | |
- "*.js" # ignore all js files at root | |
- "*.ts" # ignore all ts files at root | |
- ".github/**/*.md" # ignore html 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" |