Skip to content

build: bump @types/react from 18.3.6 to 18.3.8 #224

build: bump @types/react from 18.3.6 to 18.3.8

build: bump @types/react from 18.3.6 to 18.3.8 #224

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['20.17']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install pnpm package manager
uses: pnpm/action-setup@v4
with:
version: 9.10.0
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
cache: 'pnpm'
- name: Check for known security issues
run: pnpm audit
- name: Install Dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Remark
run: pnpm remark
- name: Prettier
run: pnpm prettier
- name: Types
run: pnpm types
- name: Validate current commit (last commit) with commitlint
if: github.event_name == 'push'
run: npx commitlint --last --verbose
- name: Test
run: pnpm coverage
- name: Build
run: pnpm build