2020-05-23 08:37:31 +03:00
|
|
|
name: Node.js CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2020-05-30 05:09:15 +03:00
|
|
|
branches:
|
|
|
|
- ethers-v5-beta
|
2020-05-23 08:37:31 +03:00
|
|
|
|
|
|
|
jobs:
|
2020-05-30 05:09:15 +03:00
|
|
|
test-node:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node-version: [8.x, 10.x, 12.x, 13.x]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run bootstrap
|
|
|
|
- run: npm run test-node
|
|
|
|
|
|
|
|
test-browser:
|
2020-05-23 08:37:31 +03:00
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-05-30 05:09:15 +03:00
|
|
|
module: [ 'esm', 'umd' ]
|
2020-05-23 08:37:31 +03:00
|
|
|
|
|
|
|
steps:
|
2020-05-30 05:09:15 +03:00
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run bootstrap
|
|
|
|
- run: npm run test-browser-${{ matrix.module }}
|
2020-05-23 08:37:31 +03:00
|
|
|
|