Skip to content

Return an extendable render function when customizing options #1385

Return an extendable render function when customizing options

Return an extendable render function when customizing options #1385

Workflow file for this run

name: Deploy
on:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
name: Checks ๐Ÿ“
uses: ./.github/workflows/checks.yml
deploy:
name: Deploy ๐Ÿš€
needs: checks
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/actions/prepare
- uses: ./.github/workflows/actions/type-check-with-cache
- run: pnpm run build
- name: Deploy
run: pnpm run deploy
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}