-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (64 loc) · 1.84 KB
/
ci.yml
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
name: CI
on:
push:
pull_request:
release:
types: [released]
schedule:
# runs every two hours
- cron: '0 */2 * * *'
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.10.x'
cache: 'yarn'
- run: yarn install --immutable
- run: yarn run format-check
es-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.10.x'
cache: 'yarn'
- run: yarn install --immutable
- run: yarn run lint-check
init:
runs-on: ubuntu-latest
env:
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
WALLET_ADDRESS: ${{ secrets.WALLET_ADDRESS }}
SECOND_PRIVATE_KEY: ${{ secrets.SECOND_PRIVATE_KEY }}
SECOND_WALLET_ADDRESS: ${{ secrets.SECOND_WALLET_ADDRESS }}
THIRD_PRIVATE_KEY: ${{ secrets.THIRD_PRIVATE_KEY }}
THIRD_WALLET_ADDRESS: ${{ secrets.THIRD_WALLET_ADDRESS }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.10.x'
cache: 'yarn'
- run: yarn install --immutable
- run: yarn start
tests:
runs-on: ubuntu-latest
env:
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
WALLET_ADDRESS: ${{ secrets.WALLET_ADDRESS }}
SECOND_PRIVATE_KEY: ${{ secrets.SECOND_PRIVATE_KEY }}
SECOND_WALLET_ADDRESS: ${{ secrets.SECOND_WALLET_ADDRESS }}
THIRD_PRIVATE_KEY: ${{ secrets.THIRD_PRIVATE_KEY }}
THIRD_WALLET_ADDRESS: ${{ secrets.THIRD_WALLET_ADDRESS }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.10.x'
cache: 'yarn'
- run: yarn install --immutable
- run: yarn test