chore(deps): update typescript-eslint monorepo to v7.18.0 #1014
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ci-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
validate: | |
name: ✅ Validate project | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout project | |
uses: actions/checkout@v4 | |
- name: 🧙♂️ Setup environment | |
uses: ./.github/actions/setup-environment | |
- name: 🖍️ Check types | |
run: npm run check:types | |
- name: 💅 Check format | |
run: npm run check:format | |
- name: 📑 Check lint | |
run: npm run check:lint | |
- name: 📦 Check package.json | |
run: npm run check:packagejson | |
- name: 📝 Check markdown | |
run: npm run check:markdown | |
- name: 🔤 Check spelling | |
run: npm run check:spelling | |
test: | |
name: 🧑🔬 Test project | |
runs-on: ubuntu-latest | |
needs: validate | |
steps: | |
- name: ⬇️ Checkout project | |
uses: actions/checkout@v4 | |
- name: 🧙♂️ Setup environment | |
uses: ./.github/actions/setup-environment | |
- name: 🧪 Run tests | |
run: npm run test:coverage | |
build: | |
name: 🧰 Build project | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- name: ⬇️ Checkout project | |
uses: actions/checkout@v4 | |
- name: 🧙♂️ Setup environment | |
uses: ./.github/actions/setup-environment | |
- name: ⚒️ Build project | |
run: npm run build |