Skip to content

Add Windows to the CI OS matrix #502

Add Windows to the CI OS matrix

Add Windows to the CI OS matrix #502

Workflow file for this run

name: 'CI'
on:
push:
branches:
- '**'
jobs:
build:
name: 'Run CI pipeline'
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node: [18, 20]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'pnpm'
- run: pnpm i --frozen-lockfile
- run: pnpm run ci
- name: Coverage
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: false