feat: add typeschema resolver #1035
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
- beta | |
- 1.x | |
pull_request: | |
paths-ignore: | |
- '.gitignore' | |
- '.npmignore' | |
- '*.md' | |
jobs: | |
build: | |
name: Lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Install Dependencies | |
run: bun install | |
- name: Lint | |
run: bun lint | |
- name: TS | |
run: bun lint:types | |
- name: Build | |
run: bun run build | |
publish-module: | |
name: 'Publish Module to NPM on Node ${{ matrix.node }} and ${{ matrix.os }}' | |
needs: build | |
if: github.repository == 'react-hook-form/resolvers' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/1.x') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Install Dependencies | |
run: bun install | |
- name: Build | |
run: bun run build | |
- name: Publish | |
run: npx semantic-release | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: '${{secrets.GITHUB_TOKEN}}' |