Skip to content

run ci on windows

run ci on windows #3

Workflow file for this run

name: Install tests
on: [push]
jobs:
macos:
strategy:
matrix:
node-version: [18.x, 20.x]
os: [macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npx cheerp test/hello.cpp -o test/hello.js
- run: node test/hello.js > test/hello.out
- run: diff test/hello.out test/hello.expected