Skip to content

feature/MIG-6646 Implement disabled node and field state #55

feature/MIG-6646 Implement disabled node and field state

feature/MIG-6646 Implement disabled node and field state #55

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Enable Corepack
run: corepack enable
shell: bash
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: yarn
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install
- name: Run linting
run: yarn tsc && yarn lint
- name: Run tests
run: yarn test