This repository was archived by the owner on Aug 23, 2025. It is now read-only.
fix(deps): update dependency eslint-config-next to v15 #195
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: CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| build: | |
| name: Check for Successful Build | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| - name: Build | |
| run: pnpm build | |
| eslint: | |
| name: Check Formatting | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| - name: Run ESLint | |
| uses: sibiraj-s/action-eslint@v3 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| eslint-args: "--ignore-path=.gitignore --quiet" | |
| extensions: "js,jsx,ts,tsx" | |
| annotations: true |