Skip to content

Commit

Permalink
build: add CI configuration for Windows
Browse files Browse the repository at this point in the history
Added windows-2016 as virtual environment.

PR-URL: #948
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com>
  • Loading branch information
NickNaso authored and gabrielschulhof committed Mar 28, 2021
1 parent 8ef0725 commit 5c63915
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions .github/workflows/ci-win.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Node.js CI Windows Platform

on: [push, pull_request]

jobs:
test:
timeout-minutes: 30
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
os:
- windows-latest
- windows-2016
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.5
with:
node-version: ${{ matrix.node-version }}
- name: Check Node.js installation
run: |
node --version
npm --version
- name: Install dependencies
run: |
npm install
- name: npm test
run: |
npm run pretest -- --verbose
node test
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Node.js CI
name: Node.js CI Unix Platform

on: [push, pull_request]

Expand Down

0 comments on commit 5c63915

Please sign in to comment.