Skip to content

chore(deps-dev): bump rollup in the npm_and_yarn group #488

chore(deps-dev): bump rollup in the npm_and_yarn group

chore(deps-dev): bump rollup in the npm_and_yarn group #488

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ["18.x", "20.x", "22.x"]
os: [ubuntu-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install deps
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm test --ci --coverage --maxWorkers=2
- name: Build
run: npm run build