Bump glob from 10.4.5 to 10.5.0 in /frontend #78
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: Frontend CI | |
| on: [pull_request] | |
| defaults: | |
| run: | |
| working-directory: ./frontend | |
| jobs: | |
| link-check: | |
| name: Run ESLint check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Run dependencies | |
| run: yarn run lint | |
| format-check: | |
| name: Run Prettier check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Run dependencies | |
| run: yarn run format-check |