Skip to content

Bump rollup from 4.18.0 to 4.22.4 (#27) #42

Bump rollup from 4.18.0 to 4.22.4 (#27)

Bump rollup from 4.18.0 to 4.22.4 (#27) #42

Workflow file for this run

# This workflow will run tests on push or PRs
name: CI
on:
- push
- pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [18, 20, 22]
name: Test on ${{ matrix.os }} with Node version ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run lint
- run: npm test