We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7bc543 commit 35c7fefCopy full SHA for 35c7fef
.github/workflows/ci-dev.yaml
@@ -70,9 +70,12 @@ jobs:
70
workload_identity_provider: projects/1046198160504/locations/global/workloadIdentityPools/github-actions-pool/providers/github-actions-provider
71
service_account: [email protected]
72
access_token_lifetime: 600s # 10 minutes
73
- - name: Test ${{ matrix.package }}
74
- run: |
75
- npm install
76
- bash .github/scripts/nodejs-test.sh ${{ matrix.package }}
+ - if: matrix.package.secrets
+ uses: google-github-actions/get-secretmanager-secrets@v2
+ with:
+ secrets: ${{ join(matrix.package.secrets) }}
77
+ export_to_environment: true
78
+ - name: Test ${{ matrix.package.path }}
79
+ run: make test dir=${{ matrix.package.path }}
80
env:
81
GOOGLE_SAMPLES_PROJECT: long-door-651
0 commit comments