Skip to content

chore: Bump @rollup/plugin-replace from 5.0.5 to 6.0.1 #339

chore: Bump @rollup/plugin-replace from 5.0.5 to 6.0.1

chore: Bump @rollup/plugin-replace from 5.0.5 to 6.0.1 #339

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