Skip to content

Add claude.md with info on the repo structure, to help Claude know where things are #132

Add claude.md with info on the repo structure, to help Claude know where things are

Add claude.md with info on the repo structure, to help Claude know where things are #132

Workflow file for this run

name: Test VS Code Extension
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test-extension:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
- name: Update build environment and install XVFB
run: |
sudo apt-get -y update
sudo apt-get -y install --fix-missing xvfb
- uses: quarto-dev/quarto-actions/setup@v2
- name: Build vscode extension
run: |
yarn install
yarn run build-vscode
- name: Compile and run tests
run: |
yarn install --immutable --immutable-cache --check-cache
xvfb-run yarn test-vscode