Skip to content

Merge pull request #236 from rezstream/dependabot/github_actions/acti… #425

Merge pull request #236 from rezstream/dependabot/github_actions/acti…

Merge pull request #236 from rezstream/dependabot/github_actions/acti… #425

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
env:
FORCE_COLOR: 3
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node:
- 20
- 21
os:
- macos-latest
- ubuntu-latest
- windows-latest
steps:
- name: Check out repository
uses: actions/checkout@v4.2.1
- name: Set up Node.js ${{ matrix.node }}
uses: actions/setup-node@v4.1.0
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm test