Skip to content

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- '**/*.md'
branches: [master]
pull_request:
paths-ignore:
- '**/*.md'
branches: [master]
jobs:
test:
strategy:
matrix:
node-version: [20.x]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: |
npm run build
npm test