-
Notifications
You must be signed in to change notification settings - Fork 10
66 lines (52 loc) · 1.51 KB
/
main.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
name: Main
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
# The type of runner that the job will run on
name: Lint & Test
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Run Nigiri
uses: vulpemventures/nigiri-github-action@v1
- name: Sleep
run: sleep 7
- name: Install and Run TDEX Daemon
shell: 'script -q -e -c "bash {0}"'
run: yarn tdex:run-init
- name: Run electrs-batch-server
shell: bash
run: |
git clone https://github.com/vulpemventures/electrs-batch-server.git
cd electrs-batch-server
export ELECTRS_URL=http://localhost:3001
export PORT=5500
export CONCURRENCY=10
npm install
npm start &
cd ..
- run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Install Playwright Browsers
run: yarn playwright install --with-deps
- name: Run Playwright tests
run: yarn playwright test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
- name: Test
run: yarn test --ci --maxWorkers=2
- name: Build
run: CI="" yarn build