mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 17:22:51 -05:00
* Fix initial build breaks from 1.67 merge (#2514) * Update yarn lock files * Update build scripts * Fix tsconfig * Build breaks * WIP * Update yarn lock files * Misc breaks * Updates to package.json * Breaks * Update yarn * Fix breaks * Breaks * Build breaks * Breaks * Breaks * Breaks * Breaks * Breaks * Missing file * Breaks * Breaks * Breaks * Breaks * Breaks * Fix several runtime breaks (#2515) * Missing files * Runtime breaks * Fix proxy ordering issue * Remove commented code * Fix breaks with opening query editor * Fix post merge break * Updates related to setup build and other breaks (#2516) * Fix bundle build issues * Update distro * Fix distro merge and update build JS files * Disable pipeline steps * Remove stats call * Update license name * Make new RPM dependencies a warning * Fix extension manager version checks * Update JS file * Fix a few runtime breaks * Fixes * Fix runtime issues * Fix build breaks * Update notebook tests (part 1) * Fix broken tests * Linting errors * Fix hygiene * Disable lint rules * Bump distro * Turn off smoke tests * Disable integration tests * Remove failing "activate" test * Remove failed test assertion * Disable other broken test * Disable query history tests * Disable extension unit tests * Disable failing tasks
92 lines
2.7 KiB
YAML
92 lines
2.7 KiB
YAML
name: Monaco Editor checks
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- release/*
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- release/*
|
|
|
|
jobs:
|
|
main:
|
|
name: Monaco Editor checks
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 40
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 14
|
|
|
|
- name: Compute node modules cache key
|
|
id: nodeModulesCacheKey
|
|
run: echo "::set-output name=value::$(node build/azure-pipelines/common/computeNodeModulesCacheKey.js)"
|
|
- name: Cache node modules
|
|
id: cacheNodeModules
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: "**/node_modules"
|
|
key: ${{ runner.os }}-cacheNodeModules20-${{ steps.nodeModulesCacheKey.outputs.value }}
|
|
restore-keys: ${{ runner.os }}-cacheNodeModules20-
|
|
- name: Get yarn cache directory path
|
|
id: yarnCacheDirPath
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
- name: Cache yarn directory
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
|
key: ${{ runner.os }}-yarnCacheDir-${{ steps.nodeModulesCacheKey.outputs.value }}
|
|
restore-keys: ${{ runner.os }}-yarnCacheDir-
|
|
- name: Execute yarn
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
|
|
env:
|
|
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
|
|
ELECTRON_SKIP_BINARY_DOWNLOAD: 1
|
|
run: yarn --frozen-lockfile --network-timeout 180000
|
|
|
|
- name: Download Playwright
|
|
run: yarn playwright-install
|
|
|
|
- name: Run Monaco Editor Checks
|
|
run: yarn monaco-compile-check
|
|
|
|
- name: Editor Distro & ESM Bundle
|
|
run: yarn gulp editor-esm-bundle
|
|
|
|
- name: Editor ESM sources check
|
|
working-directory: ./test/monaco
|
|
run: yarn run esm-check
|
|
|
|
- name: Typings validation prep
|
|
run: |
|
|
mkdir typings-test
|
|
|
|
- name: Typings validation
|
|
working-directory: ./typings-test
|
|
run: |
|
|
yarn init -yp
|
|
../node_modules/.bin/tsc --init
|
|
echo "import '../out-monaco-editor-core';" > a.ts
|
|
../node_modules/.bin/tsc --noEmit
|
|
|
|
- name: Package Editor with Webpack
|
|
working-directory: ./test/monaco
|
|
run: yarn run bundle-webpack
|
|
|
|
- name: Compile Editor Tests
|
|
working-directory: ./test/monaco
|
|
run: yarn run compile
|
|
|
|
- name: Run Editor Tests
|
|
timeout-minutes: 5
|
|
working-directory: ./test/monaco
|
|
run: yarn test
|