Skip to content

Commit 182df75

Browse files
committed
ci: add nx cloud access token to github actions
1 parent 1a07691 commit 182df75

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88

99
env:
1010
NX_NON_NATIVE_HASHER: true
11+
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
1112

1213
jobs:
1314
format:

.github/workflows/code-coverage.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66

77
env:
88
NX_NON_NATIVE_HASHER: true
9+
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
910

1011
jobs:
1112
coverage:
@@ -35,7 +36,7 @@ jobs:
3536
- name: Install dependencies
3637
run: npm ci
3738
- name: Execute all tests and generate coverage reports
38-
run: npx nx run ${{ matrix.lib }}:${{ matrix.scope }}-test --coverage.enabled --skipNxCache
39+
run: npx nx run ${{ matrix.lib }}:${{ matrix.scope }}-test --coverage.enabled
3940
- name: Upload coverage reports to Codecov
4041
uses: codecov/codecov-action@v4
4142
with:

.github/workflows/code-pushup.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88

99
env:
1010
NX_NON_NATIVE_HASHER: true
11+
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
1112

1213
permissions:
1314
pull-requests: write

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ on:
2020

2121
env:
2222
NX_NON_NATIVE_HASHER: true
23+
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
2324

2425
jobs:
2526
dry-run-release:

0 commit comments

Comments
 (0)