Skip to content

Bump @types/react from 18.2.45 to 18.2.47 #6

Bump @types/react from 18.2.45 to 18.2.47

Bump @types/react from 18.2.45 to 18.2.47 #6

name: CI (packages)
on:
pull_request:
branches:
- main
- dev
paths:
- "packages/**"
- ".github/workflows/main_pr_packages.yaml"
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
ci:
runs-on: ubuntu-latest
# needs: build
strategy:
fail-fast: true
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/[email protected]
- uses: pnpm/[email protected]
with:
version: 8
- uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
# install
- name: Install dependencies 📦
run: pnpm i --frozen-lockfile
# lint
- name: Typecheck 🧷
run: pnpm run packages:typecheck
- name: Lint 🛫
run: pnpm run packages:lint
# build
- name: Build 🏗
run: pnpm run packages:build
# test
- name: Test 🧪
run: pnpm run packages:test