File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Test
2+ on :
3+ schedule :
4+ - cron : ' 0 0 * * *'
5+ workflow_dispatch :
6+ jobs :
7+ test :
8+ runs-on : ubuntu-latest
9+ env :
10+ SIP_A_OUTBOUND_PROXY : ${{ secrets.SIP_A_OUTBOUND_PROXY }}
11+ SIP_A_DOMAIN : ${{ secrets.SIP_A_DOMAIN }}
12+ SIP_A_USERNAME : ${{ secrets.SIP_A_USERNAME }}
13+ SIP_A_PASSWORD : ${{ secrets.SIP_A_PASSWORD }}
14+ SIP_A_AUTHORIZATION_ID : ${{ secrets.SIP_A_AUTHORIZATION_ID }}
15+ SIP_B_OUTBOUND_PROXY : ${{ secrets.SIP_B_OUTBOUND_PROXY }}
16+ SIP_B_DOMAIN : ${{ secrets.SIP_B_DOMAIN }}
17+ SIP_B_USERNAME : ${{ secrets.SIP_B_USERNAME }}
18+ SIP_B_PASSWORD : ${{ secrets.SIP_B_PASSWORD }}
19+ SIP_B_AUTHORIZATION_ID : ${{ secrets.SIP_B_AUTHORIZATION_ID }}
20+ steps :
21+ - uses : actions/checkout@v4
22+ - uses : actions/setup-node@v4
23+ with :
24+ node-version : 24
25+ cache : yarn
26+ - run : yarn install --frozen-lockfile
27+ - run : yarn test
You can’t perform that action at this time.
0 commit comments