Skip to content

fix(deps): bump vitest in the testing group across 1 directory #416

fix(deps): bump vitest in the testing group across 1 directory

fix(deps): bump vitest in the testing group across 1 directory #416

Workflow file for this run

name: Build & Test
on:
push:
branches-ignore: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
test:
name: Test
strategy:
matrix:
node_version: [lts/-1, lts/*, latest]
package:
- "@forward-software/react-auth"
- "@forward-software/react-auth-google"
- "@forward-software/react-auth-apple"
fail-fast: false
runs-on: "ubuntu-latest"
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
- name: Setup NodeJS
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node_version }}
cache: pnpm
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Install peerDependencies
run: pnpm install --no-frozen-lockfile --config.auto-install-peers=true
- name: Test package
run: pnpm --filter "${{ matrix.package }}" test
build:
name: Build
strategy:
matrix:
package:
- "@forward-software/react-auth"
- "@forward-software/react-auth-google"
- "@forward-software/react-auth-apple"
fail-fast: false
runs-on: "ubuntu-latest"
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
- name: Setup NodeJS
uses: actions/setup-node@v6
with:
node-version: "lts/*"
cache: pnpm
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Install peerDependencies
run: pnpm install --no-frozen-lockfile --config.auto-install-peers=true
- name: Build package
run: pnpm --filter "${{ matrix.package }}" build