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 1717 steps :
1818 - uses : actions/checkout@v4
1919
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+
2025 - name : " Set up Typescript"
2126 uses : actions/setup-node@v4
2227 with :
Original file line number Diff line number Diff line change 1616 - uses : actions/checkout@v4
1717 with :
1818 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+
1926 - name : Setup Node
2027 uses : actions/setup-node@v4
2128 with :
You can’t perform that action at this time.
0 commit comments