Skip to content

sync sub editor changes #143

sync sub editor changes

sync sub editor changes #143

Workflow file for this run

name: Unit Tests
on:
pull_request:
types: [opened, reopened, edited, synchronize]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Execute Unit tests
run: |
yarn install --frozen-lockfile
yarn run test:unit