fix(*): fixed strong tag color #216
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: Common CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [main] | |
types: ["opened", "edited", "reopened", "synchronize"] | |
jobs: | |
check_syntax_and_format: | |
name: Check Syntax and Format | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install ESLint | |
run: corepack enable && pnpm install | |
- name: Build the Project | |
run: pnpm run build | |
- name: Run ESLint | |
run: pnpm run lint | |
check_pr_title: | |
name: Check PR Title | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: npm install @commitlint/config-conventional | |
- uses: JulienKode/[email protected] |