From ed2895b9ca96cfbee386758b4de0f6c6922b0f6b Mon Sep 17 00:00:00 2001 From: Dan Allen Date: Mon, 29 Aug 2022 11:43:04 -0600 Subject: [PATCH] add Windows to CI matrix --- .gitlab-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0e39a51..bed60f5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -76,6 +76,15 @@ test:node-16-linux: test:node-18-linux: extends: .npm image: node:18-$LINUX_DISTRO +test:windows: + extends: .npm + tags: [windows] + # cache does not currently work with the shared Windows runner + cache: [] + before_script: + - choco upgrade -y nodejs --version=16.17.0 + - *platform_info + - npm ci --quiet release: stage: deploy interruptible: false -- GitLab