-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (49 loc) · 1.17 KB
/
tests.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
name: Run Tests
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["18.x"]
solana: ["1.14.18"]
steps:
- name: Git checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Cache build artefacts
uses: Swatinem/[email protected]
with:
cache-on-failure: 'true'
- name: Install Solana
uses: ./.github/actions/install-solana
with:
solana_version: ${{ matrix.solana }}
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Lint
continue-on-error: false
shell: bash
run: yarn lint
- name: Validator
continue-on-error: false
shell: bash
run: yarn validator & sleep 3
- name: Logs
continue-on-error: false
shell: bash
run: yarn validator:logs & sleep 3
- name: Test
run: yarn test