From 86ae4c2ff526e0ba36195c68536fececf8b3e4ff Mon Sep 17 00:00:00 2001 From: Zack DeRose Date: Sat, 1 Apr 2023 01:15:53 -0700 Subject: [PATCH] adding nx cloud access token to ci workflow files --- .github/workflows/ci-v3.yml | 4 ++++ .github/workflows/ci.yml | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) 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')