Skip to content

Merge pull request #64 from tobiaslabs/changeset-release/main #16

Merge pull request #64 from tobiaslabs/changeset-release/main

Merge pull request #64 from tobiaslabs/changeset-release/main #16

Workflow file for this run

#
# This workflow will run all the normal static tests (linting, unit, etc.) and
# make sure the build completes successfully.
#
name: test-windows
on:
push:
branches:
- '**'
- '!main'
jobs:
build:
environment: test
runs-on: windows-latest
strategy:
matrix:
node-version: [ 18.x, 20.x ]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run windows