feat: customize mfe links #424
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: | |
- '**' | |
tags-ignore: | |
- 'v*' | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- name: pnpm 🧰 | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.1.3 | |
- name: Node 🧰 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: 'pnpm' | |
- name: Install 📦 | |
run: pnpm install | |
- name: TS Check 🔎 | |
run: pnpm ts:check | |
- name: Lint 🔎 | |
run: pnpm lint | |
- name: Run Audit 🔬 | |
run: pnpm audit || exit 0 | |
- name: Test 🐛 | |
run: pnpm test:unit | |
- name: Build 🛠 | |
run: pnpm build |