Skip to content
This repository was archived by the owner on Nov 14, 2025. It is now read-only.

Bump zod from 3.24.3 to 3.24.4 #174

Bump zod from 3.24.3 to 3.24.4

Bump zod from 3.24.3 to 3.24.4 #174

Workflow file for this run

# This workflow runs CI checks for the project
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 10.7.1
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run CI scripts
run: pnpm run ci
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@v5
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}