Skip to content

Enhance documentation clarity and structure #1

Enhance documentation clarity and structure

Enhance documentation clarity and structure #1

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Compile extension
run: npm run compile
- name: Run tests
run: xvfb-run -a npm test