Skip to content

build(deps-dev): bump rollup from 2.51.2 to 4.12.0 #15

build(deps-dev): bump rollup from 2.51.2 to 4.12.0

build(deps-dev): bump rollup from 2.51.2 to 4.12.0 #15

Workflow file for this run

name: Build and test
on: [pull_request]
permissions:
contents: read
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18, 20]
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: use node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache: npm
node-version: ${{ matrix.node-version }}
- name: install
run: |
npm ci --ignore-scripts
- name: static checks
run: |
npm run lint
- name: build
run: |
npm run build
- name: test
run: |
npm run test