Skip to content

fix(react): fix field unmounted but can not update right model #1991

fix(react): fix field unmounted but can not update right model

fix(react): fix field unmounted but can not update right model #1991

Workflow file for this run

name: Node CI
on:
push:
branches:
- formily_next
pull_request:
branches:
- formily_next
jobs:
build:
runs-on: ${{ matrix.os }}
if: contains(github.event.head_commit.message, 'chore(versions)') == false
strategy:
matrix:
node_version: 16

Check failure on line 17 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Node CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 17, Col: 23): Unexpected value '16'
os: [ubuntu-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
- name: ESlint
uses: reviewdog/action-eslint@v1
with:
reporter: github-check
eslint_flags: '.'
- run: yarn build
- run: yarn test:prod
env:
CI: true
HEADLESS: false
PROGRESS: none
NODE_ENV: test
NODE_OPTIONS: --max_old_space_size=4096
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true