Full CI/CD Pipeline #27
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 | |
- "assets/**" # ignore root assets | |
- "docs/**" # ignore all docs | |
- "scripts/**" # ignore all scripts | |
- "ssr/**" # ignore ssr files | |
- ".github/**/*.md" # ignore markdown files for .github | |
- ".github/FUNDING.yml" # ignore funding yml | |
- ".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 | |
- "assets/**" # ignore root assets | |
- "docs/**" # ignore all docs | |
- "scripts/**" # ignore all scripts | |
- "ssr/**" # ignore ssr files | |
- ".github/**/*.md" # ignore markdown files for .github | |
- ".github/FUNDING.yml" # ignore funding yml | |
- ".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" |