Skip to content

Implement tsdoc

Implement tsdoc #364

Workflow file for this run

name: Tests
on: [pull_request]
jobs:
run:
strategy:
matrix:
os: [ubuntu-latest]
fail-fast: false
name: Node 20.x
runs-on: ${{ matrix.os }}
steps:
- name: Clone repository
uses: actions/checkout@v1
with:
fetch-depth: 3
- name: Set Node.js version
uses: actions/setup-node@v1
with:
node-version: 20.x
- run: node --version
- run: npm --version
- name: Install npm dependencies
run: npm ci
- name: Run vsce prepublish
run: npm run vscode:prepublish
- run: npm install
- name: Run tests
run: xvfb-run -a npm test