Skip to content

fix: job rate limit (#409) #752

fix: job rate limit (#409)

fix: job rate limit (#409) #752

Workflow file for this run

name: CI
on:
push:
branches: [main, release-*]
pull_request:
branches: [main, release-*]
jobs:
build:

Check failure on line 10 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 10, Col: 3): The workflow must contain at least one job with no dependencies.
name: Build
timeout-minutes: 10
runs-on: ubuntu-latest
needs: [test]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '18.x'
- run: yarn
- name: Cache nextjs build
uses: actions/cache@v4
with:
path: .next/cache
key: nextjs-${{ hashFiles('package*.json') }}
- name: Build
run: yarn build