Skip to content

Update @types/react 18.3.12 β†’ 18.3.13 (patch) #46

Update @types/react 18.3.12 β†’ 18.3.13 (patch)

Update @types/react 18.3.12 β†’ 18.3.13 (patch) #46

Workflow file for this run

name: Build and Test on Pull Request
on:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test