Don't check for unsaved changes on autocomplete, only when explicitly… #106
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: Copyright 2023 Roland Csaszar | |
# SPDX-License-Identifier: MIT | |
# | |
# Project: vscode-scheme-repl | |
# File: test.yml | |
# Date: 14.May.2023 | |
# | |
# ============================================================================== | |
name: Test | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node-version: [18.x, 20.x] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Run Tests | |
run: | | |
npm install --save-dev | |
xvfb-run -a npm test |