Skip to content

Bump the bundling group across 1 directory with 2 updates #630

Bump the bundling group across 1 directory with 2 updates

Bump the bundling group across 1 directory with 2 updates #630

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x, 24.x, 25.x, 26.x]
steps:
- uses: actions/checkout@v7.0.0
- name: Install pnpm
uses: pnpm/action-setup@v6.0.9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6.4.0
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install packages
run: |
pnpm install
- name: Build package
working-directory: ./packages/react-responsive
run: |
pnpm build
- name: Run tests
run: |
pnpm exec playwright install --with-deps chromium
pnpm test
- name: Check linting
run: |
pnpm lint
- name: Typecheck
run: |
pnpm typecheck