Skip to content

chore: Bump @rollup/plugin-node-resolve from 15.2.3 to 15.3.0 #337

chore: Bump @rollup/plugin-node-resolve from 15.2.3 to 15.3.0

chore: Bump @rollup/plugin-node-resolve from 15.2.3 to 15.3.0 #337

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: ["16", "18", "20"]
steps:
- name: Checkout project
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
check-latest: true
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test