Skip to content

chore(deps-dev): bump @vscode/vsce from 2.20.1 to 2.28.0 #684

chore(deps-dev): bump @vscode/vsce from 2.20.1 to 2.28.0

chore(deps-dev): bump @vscode/vsce from 2.20.1 to 2.28.0 #684

Workflow file for this run

name: Unit and Integration Tests
on:
pull_request:
types: [opened, edited, reopened, synchronize]
branches:
- main
merge_group:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
env:
DISPLAY: ':99.0'
steps:
- name: Start xvfb
run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & echo ">>> Started xvfb"
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16.x'
cache: 'yarn'
- name: Install dependencies
run: yarn --immutable && yarn install
- name: Lint Project
run: yarn lint
- name: Unit Tests
run: yarn test
# - name: Integration Tests
# run: yarn test:integration