Skip to content

fix: update init function to return output type and handle UUID generation for ZodString #86

fix: update init function to return output type and handle UUID generation for ZodString

fix: update init function to return output type and handle UUID generation for ZodString #86

Workflow file for this run

name: Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: npm test -- --run
- uses: ./.github/workflows/actions/coverage-report
with:
token: ${{secrets.GITHUB_TOKEN}}
if: startsWith(${{ matrix.node-version }}, '16.')