-
Notifications
You must be signed in to change notification settings - Fork 9
45 lines (35 loc) · 1.14 KB
/
nightly.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
name: Nightly
on:
schedule:
- cron: '0 0 * * *'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [20.x]
os: [macos-latest]
steps:
- name: Setup Repo
uses: actions/checkout@v4
- name: Uses node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install all workspaces
run: yarn install --immutable
- name: spot-contracts run coverage
run: yarn workspace @ampleforthorg/spot-contracts run coverage
- name: spot-contracts report coverage
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: "./spot-contracts/coverage/lcov.info"
- name: spot-vaults run coverage
run: yarn workspace @ampleforthorg/spot-vaults run coverage
- name: spot-vaults report coverage
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: "./spot-vaults/coverage/lcov.info"