chore(deps): bump http-proxy-middleware from 2.0.9 to 2.0.10, bump minimatch to 10.3.0, bump tar to 7.5.16, bump js-yaml to 3.16.0, form-data to 4.0.6, vite to 8.0.6 #1550
Workflow file for this run
This file contains hidden or 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: Run linter | |
| on: | |
| pull_request: | |
| branches: [master] | |
| types: [opened, synchronize] | |
| paths-ignore: | |
| - 'dbml-homepage/**' | |
| jobs: | |
| lint: | |
| runs-on: blacksmith-2vcpu-ubuntu-2204 | |
| timeout-minutes: 5 | |
| strategy: | |
| matrix: | |
| node-version: [22.x] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'yarn' | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Lint | |
| run: yarn lint |