Skip to content

Changed Preact thread utilities to be class-based instead of being a … #1558

Changed Preact thread utilities to be class-based instead of being a …

Changed Preact thread utilities to be class-based instead of being a … #1558

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 }}