Skip to content

Cleanup enum values, allow using identifier+value as an alternative to @codegen_name #85

Cleanup enum values, allow using identifier+value as an alternative to @codegen_name

Cleanup enum values, allow using identifier+value as an alternative to @codegen_name #85

Workflow file for this run

name: Check metamodel sync
on:
pull_request:
paths:
- 'compiler/**'
- 'typescript-generator/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Copy compiler's metamodel to typescript-generator
run: |
cp compiler/src/model/metamodel.ts typescript-generator/src/metamodel.ts
- name: Check file sync
run: |
if [ -n "$(git status --porcelain)" ]; then echo "Error: compiler's metamodel and ts generator metamodel are not in sync"; git diff; git status; exit 1; fi