Skip to content

Use node20 in action #51

Use node20 in action

Use node20 in action #51

Workflow file for this run

name: setup-vsdevenv
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: test
runs-on: ${{ matrix.image }}
strategy:
matrix:
image: [ 'windows-latest', 'ubuntu-latest' ]
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v1
- uses: ./
- run: 'cl /EHsc /Fe:test.exe tests\\test.cpp && .\\test.exe'
if: runner.os == 'Windows'