diff --git a/.github/workflows/ci-v3.yml b/.github/workflows/ci-v3.yml index bab4619bc1..eab03365ab 100644 --- a/.github/workflows/ci-v3.yml +++ b/.github/workflows/ci-v3.yml @@ -4,6 +4,10 @@ on: push: branches: - 'v3' +env: + NX_DAEMON: false + NX_VERBOSE_LOGGING: true + NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} jobs: test: name: 'Node ${{ matrix.node }}, React ${{ matrix.react }}' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 81aa953030..8a0e0bf7a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,9 @@ on: - 'alpha' - 'beta' env: - NX_DAEMON: 'false' + NX_DAEMON: false + NX_VERBOSE_LOGGING: true + NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} jobs: test-and-publish: if: github.repository == 'TanStack/query' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta')