Skip to content

CI windows

CI windows #15

# CI for testing node tests on Windows
name: CI windows
on:
workflow_dispatch:
jobs:
test-plebbit-node-windows:
runs-on: windows-latest
timeout-minutes: 20
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
# Setup plebbit-js deps
- run: npm ci
- run: npm run build
- run: DEBUG="plebbit*" npm run test:server:node & npm run test:server:wait-on
- run: DEBUG="plebbit*, -plebbit*trace" npm run test:node:local
- run: DEBUG="plebbit*, -plebbit*trace" npm run test:node:remote