feat(qiankun): 默认 library 不加上 chunk 名 (#948) #2140
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node_version: [10.x, 12.x] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: '1' | |
- name: Use Node.js ${{ matrix.node_version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node_version }} | |
registry-url: 'https://registry.yarnpkg.com' | |
- run: yarn --ignore-engines | |
- run: yarn build | |
- run: yarn test --forceExit | |
env: | |
CI: true | |
HEADLESS: false | |
PROGRESS: none | |
NODE_ENV: test |