Feat jinhua clusters blacklist 260224 #1290
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, release-*] | |
| pull_request: | |
| branches: [main, release-*] | |
| jobs: | |
| build: | |
| name: Build | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup node | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: '20.x' | |
| - run: yarn | |
| - name: Cache nextjs build | |
| uses: actions/cache@v5 | |
| with: | |
| path: .next/cache | |
| key: nextjs-${{ hashFiles('package*.json') }} | |
| - name: Build | |
| run: yarn build |