ethers.js/.github/workflows/nodejs.yml

109 lines
1.9 KiB
YAML
Raw Normal View History

2020-05-23 08:37:31 +03:00
name: Node.js CI
on:
push:
2020-05-30 05:09:15 +03:00
branches:
2020-06-13 04:26:47 +03:00
- master
2020-05-23 08:37:31 +03:00
jobs:
2020-07-13 13:48:33 +03:00
2020-05-30 05:09:15 +03:00
test-node:
runs-on: ubuntu-latest
strategy:
fail-fast: false
2020-05-30 05:09:15 +03:00
matrix:
2020-07-13 15:42:40 +03:00
node-version: [8.x, 10.x, 12.x, 13.x ]
2020-05-30 05:09:15 +03:00
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
2020-08-24 02:39:57 +03:00
2020-05-30 05:09:15 +03:00
- uses: actions/checkout@v2
2020-08-24 02:39:57 +03:00
2020-05-30 05:09:15 +03:00
- run: npm ci
2020-07-13 13:48:33 +03:00
- run: npm run build-all
2020-05-30 05:09:15 +03:00
- run: npm run test-node
2020-07-13 13:48:33 +03:00
2020-05-30 05:09:15 +03:00
test-browser:
2020-05-23 08:37:31 +03:00
runs-on: ubuntu-latest
strategy:
fail-fast: false
2020-05-23 08:37:31 +03:00
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
2020-08-24 02:39:57 +03:00
2020-05-30 05:09:15 +03:00
- uses: actions/checkout@v2
2020-08-24 02:39:57 +03:00
2020-05-30 05:09:15 +03:00
- run: npm ci
2020-07-13 13:48:33 +03:00
- run: npm run build-all
2020-05-30 05:09:15 +03:00
- run: npm run test-browser-${{ matrix.module }}
2020-05-23 08:37:31 +03:00
2020-07-13 13:48:33 +03:00
test-react-native:
runs-on: macos-latest
# Temporary for testing CI
continue-on-error: true
strategy:
fail-fast: false
steps:
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- uses: actions/checkout@v2
- run: npm ci
- run: npm run build-all
- run: npm run test-react
2020-07-13 13:48:33 +03:00
coverage:
name: Coverage
runs-on: ubuntu-latest
continue-on-error: true
2020-07-13 13:48:33 +03:00
steps:
- uses: actions/setup-node@v1
with:
node-version: 12.x
2020-08-24 02:39:57 +03:00
2020-07-13 13:48:33 +03:00
- uses: actions/checkout@v2
2020-08-24 02:39:57 +03:00
2020-07-13 13:48:33 +03:00
- run: npm ci
- run: npm run build-all
- run: npm run test-coverage
2020-08-24 02:39:57 +03:00
2020-08-25 08:53:48 +03:00
- name: Upload coverage summary
2020-08-24 02:39:57 +03:00
uses: actions/upload-artifact@v2
with:
name: coverage-summary
path: ./output/summary.txt
- name: Tar files
run: tar -cvf ./output/coverage.tar ./output/lcov-report/
2020-08-25 08:53:48 +03:00
- name: Upload coverage
2020-08-24 02:39:57 +03:00
uses: actions/upload-artifact@v2
with:
name: coverage-complete
path: ./output/coverage.tar