Skip to content

fix: rename configuration key #339

fix: rename configuration key

fix: rename configuration key #339

Workflow file for this run

name: Test
on:
pull_request:
push:
tags:
- v*
branches:
- main
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
# cache: "pnpm"
# This is disabled until https://github.com/microsoft/vscode-test-cli/issues/77
# is resolved. We don't have any tests anyway.
# - run: pnpm install
# - run: xvfb-run -a pnpm test
# if: runner.os == 'Linux'
# - run: pnpm test
# if: runner.os != 'Linux'