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 : Node.js CI
1+ name : Build
22
33on :
44 push :
88
99jobs :
1010 build :
11-
1211 runs-on : ubuntu-latest
1312
1413 strategy :
1514 matrix :
1615 node-version : [12.x, 14.x, 16.14.2]
17- # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1816
1917 steps :
2018 - uses : actions/checkout@v2
Original file line number Diff line number Diff line change 1+ name : Test
2+
3+ on :
4+ pull_request :
5+ branches : [ main ]
6+
7+ jobs :
8+ test :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/checkout@v3
12+ with :
13+ fetch-depth : 0
14+ - uses : actions/setup-node@v2
15+ with :
16+ node-version : ' 16.14.2'
17+ registry-url : ' https://registry.npmjs.org'
18+ - run : npm install
19+ - run : npm test
20+ env :
21+ FIREBLOCKS_API_KEY : ${{ secrets.FIREBLOCKS_API_KEY }}
22+ FIREBLOCKS_API_PRIVATE_KEY_PATH : ${{ secrets.FIREBLOCKS_API_PRIVATE_KEY_PATH }}
23+ FIREBLOCKS_API_BASE_URL : ${{ vars.FIREBLOCKS_API_BASE_URL }}
24+ FIREBLOCKS_RPC_URL : ${{ vars.FIREBLOCKS_RPC_URL }}
You can’t perform that action at this time.
0 commit comments