From c5000c5c979d613b81af8de672a29bc69df8e6ff Mon Sep 17 00:00:00 2001 From: Scott Doxey Date: Tue, 30 Apr 2024 16:08:33 -0400 Subject: [PATCH] Test on ubuntu and windows via GitHub Actions. Deleted appveyor.yml config --- .github/workflows/test.workflow.yml | 6 +++++- appveyor.yml | 20 -------------------- 2 files changed, 5 insertions(+), 21 deletions(-) delete mode 100644 appveyor.yml diff --git a/.github/workflows/test.workflow.yml b/.github/workflows/test.workflow.yml index c540aa9..f82d267 100644 --- a/.github/workflows/test.workflow.yml +++ b/.github/workflows/test.workflow.yml @@ -11,7 +11,11 @@ on: jobs: tests: - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + + runs-on: ${{ matrix.os }} if: github.event.pull_request.draft == false steps: diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 64047e7..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,20 +0,0 @@ -image: - - Visual Studio 2022 - -environment: - nodejs_version: 18 - -platform: - - x64 - -install: - - ps: Install-Product node $env:nodejs_version $env:platform - - npm install npm@latest -g - - npm ci - -test_script: - - node -v - - npm -v - - npm test - -build: false