Add edit flows for extrude and offset plane operations #270
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CodeMirror Lang KCL | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
yarn-unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'yarn' | |
- run: yarn install | |
working-directory: packages/codemirror-lang-kcl | |
- run: yarn tsc | |
working-directory: packages/codemirror-lang-kcl | |
- name: run unit tests | |
run: yarn test | |
working-directory: packages/codemirror-lang-kcl |