Skip to content

Bump @types/vscode from 1.88.0 to 1.89.0 in /client (#396) #575

Bump @types/vscode from 1.88.0 to 1.89.0 in /client (#396)

Bump @types/vscode from 1.88.0 to 1.89.0 in /client (#396) #575

on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Setup NPM
run: |
npm install
npm run compile
- name: Setup cfn-lint
run: |
pip install cfn-lint
pip install pydot
- run: npm run lint
- run: npm run prettier
if: runner.os == 'Linux'
- run: xvfb-run -a npm run test
if: runner.os == 'Linux'
- run: npm run test
if: runner.os != 'Linux'