Skip to content

Merge pull request #17 from ilterra/next #8

Merge pull request #17 from ilterra/next

Merge pull request #17 from ilterra/next #8

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18.x, 20.x, 22.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache-dependency-path: package.json
cache: 'npm'
- run: npm install
- run: npm run build --if-present
- run: npm test