build(deps): bump @xyflow/react from 12.3.2 to 12.3.3 in /lineage-pan… #374
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: Lint Lineage Panel (react app) | |
on: | |
push: | |
paths: | |
- 'lineage-panel/**' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: npm ci | |
working-directory: lineage-panel | |
- name: Run linter | |
run: npm run lint | |
working-directory: lineage-panel |