feat: data-browsing monaco core implementation VSCODE-727 #739
Workflow file for this run
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: Test and Build (from fork) | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| test-and-build: | |
| name: Test and Build | |
| if: github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.head.repo.full_name != github.repository | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Get VS Code Node.js version | |
| id: get-vscode-node-version | |
| shell: bash | |
| run: | | |
| # Fetch Node.js version from VS Code's .nvmrc, default to 22.20.0 if unavailable | |
| NODE_VERSION=$(curl -fsSL https://raw.githubusercontent.com/microsoft/vscode/main/.nvmrc | tr -d '[:space:]') | |
| if [ -z "$NODE_VERSION" ]; then | |
| NODE_VERSION="22.21.1" | |
| fi | |
| echo "Using Node.js version for VS Code extension tests: $NODE_VERSION" | |
| echo "vscode-node-version=$NODE_VERSION" >> $GITHUB_OUTPUT | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node.js Environment | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ steps.get-vscode-node-version.outputs.vscode-node-version }} | |
| cache: pnpm | |
| - name: Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run Checks | |
| run: pnpm run check | |
| # the glob here just fails | |
| if: ${{ runner.os != 'Windows' }} | |
| - name: Run Tests | |
| env: | |
| NODE_OPTIONS: "--max_old_space_size=4096" | |
| SEGMENT_KEY: ${{ secrets.SEGMENT_KEY_DEV }} | |
| MDB_IS_TEST: "true" | |
| run: pnpm run test |