-
Notifications
You must be signed in to change notification settings - Fork 4
43 lines (39 loc) · 967 Bytes
/
test.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
name: Build & test packages
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
packages:
strategy:
fail-fast: false
matrix:
package:
- name: morpho-ts
jest: true
hardhat: false
- name: morpho-test
jest: false
hardhat: false
- name: blue-api-sdk
jest: false
hardhat: false
- name: blue-sdk
jest: true
hardhat: false
- name: blue-sdk-ethers
jest: true
hardhat: true
- name: blue-sdk-viem
jest: false
hardhat: true
uses: ./.github/workflows/package.yml
with:
name: ${{ matrix.package.name }}
jest: ${{ matrix.package.jest }}
hardhat: ${{ matrix.package.hardhat }}
secrets: inherit