Skip to content

Add support to Union Type #373

Add support to Union Type

Add support to Union Type #373

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Build
run: |
npm run build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Test
run: |
npm run test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Lint
run: |
echo Linking basic-types into ./src
ln -s $(pwd)/basic-types ./src/
npm run lint
demo-codegen:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Code generation for demo projects
run: |
npm run build
npm run start:example:mini-editor