Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

[fix] Event UpdateDirty didn't fire when remounting #28

[fix] Event UpdateDirty didn't fire when remounting

[fix] Event UpdateDirty didn't fire when remounting #28

Workflow file for this run

name: core-test
on:
pull_request
jobs:
jest:
runs-on: [ubuntu-latest]
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Restore pr yarn cache
uses: actions/cache@v3
id: restore-yarn-cache
with:
path: .yarn/cache
key: ${{ runner.os }}-yarn-pr-${{ github.event.number }}
- name: Restore shared yarn cache
if: steps.restore-yarn-cache.outputs.cache-hit != 'true'
uses: actions/cache/restore@v3
with:
path: .yarn/cache
key: ${{ runner.os }}-yarn-shared
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies
run: yarn install --immutable
- name: Run Jest
run: yarn workspace @sugarform/core test --verbose --coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3