Feat: Add file tree, add include and exclude prefix for auto ingestion #317
Workflow file for this run
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: admin | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- ui/admin/** | |
jobs: | |
lint: | |
runs-on: depot-ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.17.0" | |
- name: Set up pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.12.3 | |
- name: Install dependencies | |
run: | | |
cd ui/admin | |
pnpm install | |
- name: Run linter | |
run: make lint-admin | |
- name: Verify no changes | |
run: make no-changes |