-
Notifications
You must be signed in to change notification settings - Fork 122
76 lines (59 loc) · 1.49 KB
/
tests-frontier.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
70
71
72
73
74
75
76
name: Tests - DeFiCh/metachain-ts-suite
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Populate environment
run: ./make.sh ci-export-vars
- name: Setup dependencies
run: sudo ./make.sh ci-setup-deps
- name: Setup dependencies for target
run: ./make.sh ci-setup-deps-target
- name: Build binaries
run: ./make.sh build
- name: Upload binaries
uses: actions/upload-artifact@v3
with:
name: defibins
path: |
build/src/defid
test:
name: Frontier tests
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
with:
repository: defich/metachain-ts-tests
ref: 'main'
- name: Download binaries
uses: actions/download-artifact@v3
with:
name: defibins
- name: Setup permissions
run: |
chmod uog+x "$(pwd)/defid"
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: |
npm install
- name: Compiling contracts
run: |
npm run build
- name: Run tests
run: |
DEFID="$(pwd)/defid" npm run test