diff --git a/.github/workflows/test_react_next.yml b/.github/workflows/test_react_next.yml index c1f3ce0e09dc77e..6718973fdeafa6d 100644 --- a/.github/workflows/test_react_next.yml +++ b/.github/workflows/test_react_next.yml @@ -6,39 +6,45 @@ on: name: Test react@next jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 + # build: + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v2 - - run: yarn install --frozen-lockfile --check-files - env: - NEXT_TELEMETRY_DISABLED: 1 + # - run: yarn install --frozen-lockfile --check-files + # env: + # NEXT_TELEMETRY_DISABLED: 1 - - run: yarn upgrade react@next react-dom@next -W --dev + # - run: yarn upgrade react@next react-dom@next -W --dev - - uses: actions/cache@v1 - id: cache-build - with: - path: '.' - key: ${{ github.sha }} + # - uses: actions/cache@v1 + # id: cache-build + # with: + # path: '.' + # key: ${{ github.sha }} testAll: name: Test All runs-on: ubuntu-latest - needs: build + # needs: build + env: + NEXT_TELEMETRY_DISABLED: 1 + HEADLESS: true strategy: fail-fast: false matrix: group: [1, 2, 3, 4, 5, 6] steps: - - uses: actions/cache@v1 - id: restore-build - with: - path: '.' - key: ${{ github.sha }} + # - uses: actions/cache@v1 + # id: restore-build + # with: + # path: '.' + # key: ${{ github.sha }} + + - uses: actions/checkout@v2 + + - run: yarn install --frozen-lockfile --check-files + + - run: yarn upgrade react@next react-dom@next -W --dev - run: node run-tests.js --timings -g ${{ matrix.group }}/6 -c 3 - env: - NEXT_TELEMETRY_DISABLED: 1 - HEADLESS: true