-
Notifications
You must be signed in to change notification settings - Fork 34
53 lines (39 loc) · 1.15 KB
/
ci.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
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: main-${{ github.ref }}
cancel-in-progress: true
jobs:
test-hardhat-chainlink-plugin:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install Yarn
run: npm install -g yarn
- name: Setup environment
run: yarn && yarn build
- name: Prepare test environment
run: yarn test:prepare
- name: Test chainlink:dataFeed module
run: yarn test:dataFeed
- name: Test chainlink:dataFeedProxy module
run: yarn test:dataFeedProxy
- name: Test chainlink:feedRegistry module
run: yarn test:feedRegistry
- name: Test chainlink:vrf module
run: yarn test:vrfCoordinator
- name: Test chainlink:automationRegistrar module
run: yarn test:automationRegistrar
- name: Test chainlink:automationRegistry module
run: yarn test:automationRegistry