Skip to content

chore(deps-dev): bump @types/react-dom from 18.3.0 to 18.3.1 #501

chore(deps-dev): bump @types/react-dom from 18.3.0 to 18.3.1

chore(deps-dev): bump @types/react-dom from 18.3.0 to 18.3.1 #501

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: Check
on:
push:
pull_request:
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
id: pnpm-install
with:
version: latest
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: |
${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build
- name: Check
run: pnpm run lint