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

145 lines
3.0 KiB
YAML
Raw Permalink Normal View History

2020-05-23 01:37:31 -04:00
name: Node.js CI
on:
push:
2020-05-29 22:09:15 -04:00
branches:
2024-02-22 17:50:45 -05:00
- v5
2020-05-23 01:37:31 -04:00
jobs:
2020-07-13 06:48:33 -04:00
2020-05-29 22:09:15 -04:00
test-node:
2024-02-22 17:50:45 -05:00
runs-on: ubuntu-latest
2022-10-19 04:31:32 -04:00
environment: ethers-tests
2022-10-19 04:49:26 -04:00
env:
FAUCET_PRIVATEKEY: ${{ secrets.FAUCET_PRIVATEKEY }}
2020-05-29 22:09:15 -04:00
strategy:
fail-fast: false
2020-05-29 22:09:15 -04:00
matrix:
node-version: [ 18.x, 20.x ]
2020-05-29 22:09:15 -04:00
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
2020-08-23 19:39:57 -04:00
- name: Checkout repository
uses: actions/checkout@v2
2024-02-22 17:50:45 -05:00
with:
ref: 'v5'
2020-09-12 01:18:28 -04:00
- name: Install dependencies (and link per package)
run: npm ci
- name: Build CommonJS and ESM (from TypeScript)
run: npm run build-all
- name: Run tests
run: npm run test-node
2020-05-29 22:09:15 -04:00
2020-07-13 06:48:33 -04:00
2020-05-29 22:09:15 -04:00
test-browser:
2024-02-22 17:50:45 -05:00
runs-on: ubuntu-latest
2022-10-19 04:31:32 -04:00
environment: ethers-tests
2022-10-19 04:49:26 -04:00
env:
FAUCET_PRIVATEKEY: ${{ secrets.FAUCET_PRIVATEKEY }}
2022-10-18 23:24:24 -04:00
2020-05-23 01:37:31 -04:00
strategy:
fail-fast: false
2020-05-23 01:37:31 -04:00
matrix:
2020-05-29 22:09:15 -04:00
module: [ 'esm', 'umd' ]
2020-05-23 01:37:31 -04:00
steps:
2020-05-29 22:09:15 -04:00
- uses: actions/setup-node@v1
with:
node-version: 20.x
2020-08-23 19:39:57 -04:00
- name: Checkout repository
uses: actions/checkout@v2
2024-02-22 17:50:45 -05:00
with:
ref: 'v5'
2020-05-23 01:37:31 -04:00
- name: Install dependencies (and link per package)
run: npm ci
- name: Build CommonJS and ESM (from TypeScript)
run: npm run build-all
- name: Run tests
run: npm run test-browser-${{ matrix.module }}
2020-07-13 06:48:33 -04: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
#
# - name: Checkout repository
# uses: actions/checkout@v2
#
# - name: Install dependencies (and link per package)
# run: npm ci
#
# - name: Build CommonJS and ESM (from TypeScript)
# run: npm run build-all
#
# - name: Run tests
# run: npm run test-react
2020-07-13 06:48:33 -04:00
coverage:
name: Coverage
2024-02-22 17:50:45 -05:00
runs-on: ubuntu-latest
2022-10-19 04:31:32 -04:00
environment: ethers-tests
2022-10-19 04:49:26 -04:00
env:
FAUCET_PRIVATEKEY: ${{ secrets.FAUCET_PRIVATEKEY }}
2022-10-18 23:24:24 -04:00
continue-on-error: true
2020-07-13 06:48:33 -04:00
steps:
- uses: actions/setup-node@v1
with:
node-version: 20.x
2020-08-23 19:39:57 -04:00
- name: Checkout repository
uses: actions/checkout@v2
2024-02-22 17:50:45 -05:00
with:
ref: "v5"
- name: Install dependencies (and link per package)
run: npm ci
- name: Build CommonJS and ESM (from TypeScript)
run: npm run build-all
2020-08-23 19:39:57 -04:00
- name: Run tests
run: npm run test-coverage
2020-08-23 19:39:57 -04:00
2020-08-25 01:53:48 -04:00
- name: Upload coverage summary
2020-08-23 19:39:57 -04: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 01:53:48 -04:00
- name: Upload coverage
2020-08-23 19:39:57 -04:00
uses: actions/upload-artifact@v2
with:
name: coverage-complete
path: ./output/coverage.tar