Skip to content

Adds Ubuntu Linux CI test #5

Adds Ubuntu Linux CI test

Adds Ubuntu Linux CI test #5

Workflow file for this run

name: Test Windows
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
node-version: ['23.x', 'latest']
# vscode-version: ['1.95.3', 'latest']
runs-on: windows-latest
steps:
- name: Install VSCode
run: choco install vscode
- run: dir "C:\Program Files\Microsoft VS Code"
- name: Append vscode to path
run: Add-Content $env:GITHUB_PATH "C:\Program Files\Microsoft VS Code"
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
shell: bash