Skip to content

chore(deps): update dependency rollup to v4.50.0 (#655) #1412

chore(deps): update dependency rollup to v4.50.0 (#655)

chore(deps): update dependency rollup to v4.50.0 (#655) #1412

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
- name: Install Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
run_install: true
- name: Run lint
run: pnpm lint
test:
name: Test
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
react-version: [16, 17]
testing-library-version: [12]
include:
- react-version: 18
testing-library-version: 16
steps:
- name: Checkout
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
- name: Install Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
run_install: true
- name: Install Specific React version
run: pnpm add react@${{ matrix.react-version }} react-dom@${{ matrix.react-version }} @testing-library/react@${{ matrix.testing-library-version }}
- name: Run tests
run: pnpm test
typecheck:
name: Typecheck
needs: lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
- name: Install Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
run_install: true
- name: Run typecheck
run: pnpm typecheck
build:
name: Build Package
needs: [lint, typecheck, test]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
- name: Install Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
run_install: true
- name: Check if the package can be built
run: pnpm run build