ethers.js/.github/workflows/test-env.yml

57 lines
1.3 KiB
YAML
Raw Normal View History

name: Environment Tests
on:
push:
branches:
- main
jobs:
test-env:
name: Test Environments
runs-on: ubuntu-latest
env:
npm_config_registry: http://localhost:8043
strategy:
fail-fast: false
matrix:
2023-04-28 14:11:35 +03:00
tsModuleResolution: [ "node", "node16", "nodenext" ]
tsModule: [ "commonjs", "es2020" ]
pkgType: [ "module", "commonjs" ]
steps:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Checkout repository
uses: actions/checkout@v3
with:
path: "faux_modules/ethers"
2023-04-28 14:11:35 +03:00
- name: Copy tests to working directory
run: cp faux_modules/ethers/testcases/test-env/test-tsc/* .
- name: Prepare setup moduleResolution=${{ matrix.tsModuleResolution }} module=${{ matrix.tsModule }} type=${{ matrix.pkgType }}
2023-04-28 14:13:32 +03:00
run: node prepare.cjs ${{ matrix.tsModuleResolution }} ${{ matrix.tsModule }} ${{ matrix.pkgType }}
2023-04-28 14:11:35 +03:00
- name: Dump Config
run: cat package.json tsconfig.json
- name: Install and run Faux Registry
2023-04-21 11:51:00 +03:00
uses: ethers-io/hijack-npm-action@main
- name: Install packages
run: npm install
2023-04-21 13:06:41 +03:00
- name: Dump Faux Logs
run: cat .fauxNpm.log
- name: Run tests
run: npm test
2023-04-21 13:06:41 +03:00