File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 17
17
steps :
18
18
- uses : actions/checkout@v4
19
19
20
+ - name : " Check secrets"
21
+ run : |
22
+ if [ -z "${{ secrets.INTEG_TEST_ROLE_ARN }}" ]; then echo "Secret missing: INTEG_TEST_ROLE_ARN" && exit 1; fi
23
+ if [ -z "${{ secrets.INTEG_TEST_REGION }}" ]; then echo "Secret missing: INTEG_TEST_REGION" && exit 1; fi
24
+
20
25
- name : " Set up Typescript"
21
26
uses : actions/setup-node@v4
22
27
with :
Original file line number Diff line number Diff line change 16
16
- uses : actions/checkout@v4
17
17
with :
18
18
fetch-depth : 0
19
+
20
+ - name : " Check secrets"
21
+ run : |
22
+ if [ -z "${{ secrets.INTEG_TEST_ROLE_ARN }}" ]; then echo "Secret missing: INTEG_TEST_ROLE_ARN" && exit 1; fi
23
+ if [ -z "${{ secrets.INTEG_TEST_REGION }}" ]; then echo "Secret missing: INTEG_TEST_REGION" && exit 1; fi
24
+ if [ -z "${{ secrets.NPM_TOKEN }}" ]; then echo "Secret missing: NPM_TOKEN" && exit 1; fi
25
+
19
26
- name : Setup Node
20
27
uses : actions/setup-node@v4
21
28
with :
You can’t perform that action at this time.
0 commit comments