Test restructuring and cleanup #4984
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: CI (Mac) | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install Dependencies | |
run: yarn install --network-timeout 100000 | |
working-directory: Extension | |
- name: Compile Sources | |
run: yarn run compile | |
working-directory: Extension | |
- name: Run Linter | |
run: yarn run lint | |
working-directory: Extension | |
- name: Run unit tests | |
run: yarn test | |
working-directory: Extension | |
- name: Run simple vscode unit tests | |
uses: GabrielBB/xvfb-action@v1.6 | |
with: | |
run: yarn test --scenario=SingleRootProject | |
working-directory: Extension | |
# - name: Run languageServer integration tests | |
# uses: GabrielBB/xvfb-action@v1.6 | |
# with: | |
# run: yarn run integrationTests | |
# working-directory: Extension |