refactor(navigation): drop unused navigation components + add isBorde… #132
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: '▶️ Push' | |
on: | |
push: | |
branches: | |
- main | |
- chore/** | |
- feat/** | |
- fix/** | |
concurrency: | |
group: push-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
push: | |
name: '👷️ CI' | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: '🐙️ Checkout' | |
uses: actions/checkout@v4 | |
- name: '💽️ Setup' | |
uses: ./.github/actions/setup | |
- name: '🔺️ Cache' | |
uses: ./.github/actions/cache | |
- name: '📦 Install' | |
uses: ./.github/actions/install | |
- name: '🏗️ Build' | |
uses: ./.github/actions/build | |
with: | |
COMMAND: 'build' | |
- name: '🚨️ Lint' | |
uses: ./.github/actions/lint | |
- name: '🦺 Type Check' | |
uses: ./.github/actions/type-check | |
with: | |
COMMAND: 'type-check' | |
- name: '🧪 Test' | |
uses: ./.github/actions/test | |
with: | |
COMMAND: 'test' |