Skip to content

fix: unexpected exports in demo pre-compiling result #2886

fix: unexpected exports in demo pre-compiling result

fix: unexpected exports in demo pre-compiling result #2886

Workflow file for this run

name: Node CI
on:
push:
branches:
- master
pull_request:
branches:
- 1.x
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [10.x, 12.x]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
- run: yarn -v
- run: yarn --ignore-engines
- run: yarn build
- run: yarn test --forceExit --coverage
env:
CI: true
HEADLESS: false
PROGRESS: none
NODE_ENV: test
NODE_OPTIONS: --max_old_space_size=4096
- name: Generate coverage
if: matrix.node_version == '12.x' && matrix.os == 'ubuntu-latest'
run: bash <(curl -s https://codecov.io/bash)