fixed fields with dot not showing in tables (#82) #120
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
# Disable as GitHub actions is super flaky (npm ci fails, building webpack fails). | |
# name: CI | |
# on: | |
# push: | |
# branches: | |
# - release | |
# - master | |
# paths-ignore: # dont run when changes made to these folders | |
# - '.vscode/**' | |
# pull_request: | |
# env: | |
# CACHE_NPM_DEPS: cache-npm | |
# CACHE_OUT_DIRECTORY: cache-out-directory | |
# jobs: | |
# js-ts-deps: | |
# name: Install npm dependencies | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v2 | |
# - name: Install dependencies (npm ci) | |
# run: npm ci --prefer-offline | |
# - name: Cache npm files | |
# uses: actions/cache@v1 | |
# with: | |
# path: ~/.npm | |
# key: ${{runner.os}}-${{env.CACHE_NPM_DEPS}}-${{hashFiles('package-lock.json')}} | |
# compile-hygiene-test: | |
# name: Compile, lint, check for errors | |
# runs-on: ubuntu-latest | |
# needs: [js-ts-deps] | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v2 | |
# - name: Retrieve cached npm files | |
# uses: actions/cache@v1 | |
# with: | |
# path: ~/.npm | |
# key: ${{runner.os}}-${{env.CACHE_NPM_DEPS}}-${{hashFiles('package-lock.json')}} | |
# - name: Install dependencies (npm ci) | |
# run: npm ci --prefer-offline | |
# - name: Compile | |
# run: npm run compile | |
# - name: Run linting on TypeScript code | |
# run: npm run lint | |
# - name: Run prettier on TypeScript code | |
# run: npx prettier 'src/**/*.ts*' --check | |
# - name: Run tests | |
# env: | |
# DISPLAY: 10 | |
# uses: GabrielBB/[email protected] | |
# with: | |
# run: npm run test | |
# build-vsix: | |
# name: Build VSIX | |
# runs-on: ubuntu-latest | |
# needs: [js-ts-deps, compile-hygiene-test] | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v2 | |
# - name: Retrieve cached npm files | |
# uses: actions/cache@v1 | |
# with: | |
# path: ~/.npm | |
# key: ${{runner.os}}-${{env.CACHE_NPM_DEPS}}-${{hashFiles('package-lock.json')}} | |
# - name: Install dependencies (npm ci) | |
# run: npm ci --prefer-offline | |
# - name: Install VSC | |
# run: npm i vsce | |
# - name: Package the VSIX | |
# run: npm run package | |
# - uses: actions/upload-artifact@v1 | |
# with: | |
# name: ms-notebook-renderers.vsix | |
# path: ms-notebook-renderers.vsix |