Skip to content

Bump @rollup/plugin-node-resolve from 15.3.0 to 16.0.0 #438

Bump @rollup/plugin-node-resolve from 15.3.0 to 16.0.0

Bump @rollup/plugin-node-resolve from 15.3.0 to 16.0.0 #438

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
env:
FORCE_COLOR: 2
jobs:
test:
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [18, 20, 22]
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
# cache: npm
- name: Install npm dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test
- name: Coveralls GitHub Action
# You may pin to the exact commit or the version.
# uses: coverallsapp/github-action@c7885c00cb7ec0b8f9f5ff3f53cddb980f7a4412
uses: coverallsapp/[email protected]
if: matrix.node == 16
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"