-
Notifications
You must be signed in to change notification settings - Fork 9
70 lines (68 loc) · 1.99 KB
/
release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Release
on:
push:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Codegen
run: yarn codegen:contracts
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Release
run: yarn semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
build-mocks:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 3
persist-credentials: false
- run: git pull
- uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: Install root dependencies
run: yarn install --frozen-lockfile
- name: Codegen
run: yarn codegen:contracts
- name: Install pkg dependencies
working-directory: ./mocks.pkg
run: yarn install --frozen-lockfile
- name: Lint
working-directory: ./mocks.pkg
run: yarn lint
- name: Build
env:
ETHEREUM_RPC_NODE: ${{ secrets.ETHEREUM_RPC_NODE }}
POLYGON_RPC_NODE: ${{ secrets.POLYGON_RPC_NODE }}
ARBITRUM_RPC_NODE: ${{ secrets.ARBITRUM_RPC_NODE }}
BINANCE_RPC_NODE: ${{ secrets.BINANCE_RPC_NODE }}
AVALANCHE_RPC_NODE: ${{ secrets.AVALANCHE_RPC_NODE }}
FANTOM_RPC_NODE: ${{ secrets.FANTOM_RPC_NODE }}
working-directory: ./mocks.pkg
run: yarn mocks:gen
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
working-directory: ./mocks.pkg
run: yarn semantic-release --tag-format sdk-mocks-v\${version}