Merge monaco-editor-wrapper and monaco-editor-react into monaco-languageclient's npm workspace #704
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: monaco-languageclient | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Use pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Install | |
shell: bash | |
run: | | |
npm ci | |
- name: Lint | |
shell: bash | |
run: | | |
npm run lint | |
- name: Build | |
shell: bash | |
run: | | |
npm run build | |
- name: Test | |
shell: bash | |
run: | | |
npm run test:run | |
- name: Verify | |
shell: bash | |
run: | | |
bash ./verify/buildAll.sh |