Skip to content

Fix clone entity not loading new model because of mixin #79

Fix clone entity not loading new model because of mixin

Fix clone entity not loading new model because of mixin #79

Workflow file for this run

name: Test Cases
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
test:
name: Test Cases
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['16.x']
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix['node-version'] }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix['node-version'] }}
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Install dependencies
run: npm install
- name: Test Cases
run: npm run test:ci
- name: Check Lint
run: npm run lint
- name: Check Build
run: npm run dist