added active tab identify #26
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: Verify | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Verify | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🌍 Setup Repository | |
uses: actions/checkout@v4 | |
- name: 📦 Install dependencies | |
run: | | |
npm install -g pnpm | |
pnpm install | |
pnpm add @manasai/events --filter ui --workspace | |
pnpm add @manasai/events --filter api --workspace | |
- name: 🧹 Lint | |
run: pnpm lint | |
- name: 🔨 Build | |
run: pnpm build |