-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (35 loc) · 1.05 KB
/
ethers-core-ci.yaml
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
name: ethers-core-ci
on:
push:
branches:
- main
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm
- name: Setup Node.js
uses: actions/setup-node@master
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- name: Install dependencies for utils wrap
run: yarn install --nonInteractive --frozen-lockfile --prefer-offline
working-directory: ./wraps/utils
- name: Build utils wrap
run: yarn build
working-directory: ./wraps/utils
- name: Install dependencies for core wrap
run: yarn install --nonInteractive --frozen-lockfile --prefer-offline
working-directory: ./wraps/core
- name: Build core wrap
run: yarn build
working-directory: ./wraps/core
- name: Test core wrap
run: yarn test
working-directory: ./wraps/core