Skip to content

Update Changelog date #102

Update Changelog date

Update Changelog date #102

Workflow file for this run

# 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