From 26e6dc319237ccbd61fd8b6fd6e5bc4c0ff43826 Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Wed, 29 Jan 2020 10:39:15 -0600 Subject: [PATCH] Update workflow for testing against react@next (#10323) --- .github/workflows/test_react_next.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_react_next.yml b/.github/workflows/test_react_next.yml index 0cdcb04221d8569..c1f3ce0e09dc77e 100644 --- a/.github/workflows/test_react_next.yml +++ b/.github/workflows/test_react_next.yml @@ -11,11 +11,11 @@ jobs: steps: - uses: actions/checkout@v2 - - run: cd repo && yarn install --frozen-lockfile --check-files + - run: yarn install --frozen-lockfile --check-files env: NEXT_TELEMETRY_DISABLED: 1 - - run: cd repo && 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 @@ -38,7 +38,7 @@ jobs: path: '.' key: ${{ github.sha }} - - run: cd repo && node run-tests.js --timings -g ${{ matrix.group }}/6 -c 3 + - run: node run-tests.js --timings -g ${{ matrix.group }}/6 -c 3 env: NEXT_TELEMETRY_DISABLED: 1 HEADLESS: true