Skip to content

Merge pull request #45 from ensdomains/mdt/clear-deps #176

Merge pull request #45 from ensdomains/mdt/clear-deps

Merge pull request #45 from ensdomains/mdt/clear-deps #176

Workflow file for this run

name: CI
env:
INFURA_KEY: ${{ secrets.INFURA_KEY }}
OPENSEA_KEY: ${{ secrets.OPENSEA_KEY }}
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['12.x', '14.x', '16.x']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- run: yarn install --immutable --immutable-cache --check-cache
- name: Lint
run: yarn lint
- name: Test
run: yarn test --ci --coverage --maxWorkers=2
- name: Build
run: yarn build