forked from nodejs/node-addon-api
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (29 loc) · 720 Bytes
/
ci-win.yml
File metadata and controls
31 lines (29 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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, 16.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