Skip to content

Bump @types/jest from 29.5.12 to 29.5.13 #220

Bump @types/jest from 29.5.12 to 29.5.13

Bump @types/jest from 29.5.12 to 29.5.13 #220

Workflow file for this run

name: Check
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
check-package:
name: Check Package
runs-on: ubuntu-22.04
steps:
- name: Checkout Project
uses: actions/checkout@v4.1.7
- name: Setup Node.js
uses: actions/setup-node@v4.0.3
with:
node-version-file: .nvmrc
- name: Setup Yarn
uses: threeal/setup-yarn-action@v2.0.0
- name: Check Formatting
run: |
yarn format
git diff --exit-code HEAD
- name: Check Lint
run: yarn lint