Skip to content

Merge branch 'main' into ci-npm-test #9

Merge branch 'main' into ci-npm-test

Merge branch 'main' into ci-npm-test #9

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2022]
node-version: ['18.x']
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run prettier
continue-on-error: true
- run: npm run test-types
continue-on-error: true
- run: npm run test-unit