Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

fix: add coercion on http handler #187

fix: add coercion on http handler

fix: add coercion on http handler #187

Workflow file for this run

name: Typescript Package CI
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
workflow_dispatch:
inputs:
beta_release:
description: Create beta release
required: true
type: boolean
jobs:
typescript:
uses: skyleague/node-standards/.github/workflows/reusable-typescript.yml@main
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
build:
uses: skyleague/node-standards/.github/workflows/reusable-build.yml@main
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
release:
needs: [typescript, build]
uses: skyleague/node-standards/.github/workflows/reusable-release.yml@main
with:
build_artifact_name: ${{ needs.build.outputs.artifact_name }}
beta_release: ${{ inputs.beta_release || false }}
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}