-
Notifications
You must be signed in to change notification settings - Fork 5
52 lines (45 loc) · 1.19 KB
/
contracts-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
name: Contracts Tests
on:
push:
branches:
- main
- develop
pull_request:
paths:
- 'contracts/**'
- '.github/workflows/contracts-*.yml'
workflow_dispatch:
workflow_call:
secrets:
ALCHEMY_API_KEY:
required: true
jobs:
formatting-linting:
uses: ./.github/workflows/formatting-linting.yml
tests:
runs-on: 'ubuntu-latest'
defaults:
run:
working-directory: contracts
steps:
- name: 'Check out the repo'
uses: 'actions/checkout@v3'
- name: 'Install Node.js'
uses: 'actions/setup-node@v3'
with:
cache: 'yarn'
node-version: 18
- name: 'Install the dependencies'
run: 'yarn install --frozen-lockfile'
- name: 'Build the contracts'
run: 'yarn build'
env:
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }}
- name: 'Build the typechain'
run: 'yarn typechain'
env:
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }}
- name: 'Test the contracts and generate the coverage report'
run: 'yarn coverage >> $GITHUB_STEP_SUMMARY'
env:
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }}