Skip to content

chore(actions): add rollup group to Dependabot configuration #71

chore(actions): add rollup group to Dependabot configuration

chore(actions): add rollup group to Dependabot configuration #71

Workflow file for this run

name: Build & Test
on:
push:
branches-ignore: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
name: Build & Test
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest"]
node_version: [lts/-1, lts/*, latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda
- name: Setup NodeJS
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node_version }}
cache: pnpm
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Build packages
run: pnpm -r build
- name: Test packages
run: pnpm -r test