-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (51 loc) · 1.4 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
61
62
63
name: Run Tests
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["16.x", "18.x"]
solana: ["1.14.12"]
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 Anchor
run: cargo install --git https://github.com/coral-xyz/anchor --tag v0.28.0 anchor-cli --locked
- 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: Check Cargo fmt
continue-on-error: false
shell: bash
run: cargo fmt --check
- name: Check cargo clippy
run: cargo clippy
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint TypeScript
continue-on-error: false
shell: bash
run: yarn lint:check
- name: Build
run: anchor build
- name: Run tests
continue-on-error: false
shell: bash
run: anchor test --skip-build