do not use module type for service worker (#20) #2
This file contains hidden or 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: Build Code Editor Targets | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| - '*.*.x' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build Code Editor Targets | |
| runs-on: ubuntu-latest | |
| environment: build-targets-workflow-env | |
| strategy: | |
| matrix: | |
| build-targets: [code-editor-server, code-editor-sagemaker-server, code-editor-web-embedded] | |
| exclude: | |
| # Only build SageMaker for now, remove the excluded targets when needed in the future. | |
| - build-targets: code-editor-server | |
| - build-targets: code-editor-web-embedded | |
| steps: | |
| - name: Start Build Workflow | |
| run: | | |
| echo "Starting Build Workflow for target: ${{ matrix.build-targets }}" |