Skip to content

feat: add support for zod v4 stable #5

feat: add support for zod v4 stable

feat: add support for zod v4 stable #5

Workflow file for this run

name: Release
on:
push:
branches:
- main
- beta
permissions:
contents: write
issues: write
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
- name: Biome CI
run: pnpm biome ci .
- name: Test
run: pnpm test:ci
- name: Build
run: pnpm build
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
with:
extra_plugins: |
@semantic-release/changelog@^6
@semantic-release/git@^10