Skip to content

Core: Remove typesVersions field from core #47160

Core: Remove typesVersions field from core

Core: Remove typesVersions field from core #47160

Workflow file for this run

name: Unit tests
on:
push:
branches:
- next
pull_request:
types: [opened, synchronize, reopened]
env:
NODE_OPTIONS: "--max_old_space_size=4096"
jobs:
build:
name: Core Unit Tests, windows-latest
runs-on: windows-11-arm
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set node version
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: 'yarn'
cache-dependency-path: |
code/yarn.lock
scripts/yarn.lock
- name: install scripts
run: |
cd scripts && yarn install
- name: install code
run: |
cd code && yarn install
- name: compile
run: yarn task --task compile --start-from=compile
- name: Install Playwright Dependencies
run: cd code && yarn exec playwright install chromium --with-deps
- name: test
run: yarn test