fix(api): ingest runner modified checker - minio (#140) #194
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: Test Frontend | |
on: | |
push: | |
paths: | |
- "nesis/frontend/client/**" | |
- "nesis/frontend/server/**" | |
pull_request: | |
paths: | |
- "nesis/frontend/client/**" | |
- "nesis/frontend/server/**" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: Lint Frontend | |
defaults: | |
run: | |
working-directory: ./nesis/frontend | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install frontend dependencies | |
run: npm install --legacy-peer-deps --prefix client --only dev | |
- name: Install server dependencies | |
run: npm install --legacy-peer-deps | |
- run: npm run format:check | |
name: Check formatting | |
- name: Test API | |
run: npm run test:api |