chore(deps-dev): bump @vscode/vsce from 2.20.1 to 2.27.0 #680
Workflow file for this run
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
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 |