Fix TS api types and add some cursor tests (#623) #32
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: "deploy" | ||
on: | ||
# Run using manual triggers from GitHub UI: | ||
# https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow | ||
workflow_dispatch: {} | ||
# Run on pushes to 'main' branch': | ||
push: | ||
branches: | ||
- "main" | ||
# We publish multiple packages for each version. | ||
# Wait for any existing deploys to complete before starting a new one: | ||
concurrency: | ||
group: "deploy" | ||
cancel-in-progress: false | ||
jobs: | ||
ci: | ||
uses: "./.github/workflows/_jobs_ci.yml" | ||
github-pages: | ||
Check failure on line 23 in .github/workflows/deploy.yml GitHub Actions / deployInvalid workflow file
|
||
needs: "ci" | ||
if: "${{ github.repository == 'NomicFoundation/slang' }}" | ||
uses: "./.github/workflows/_jobs_github_pages.yml" | ||
publish: | ||
needs: "ci" | ||
if: "${{ github.repository == 'NomicFoundation/slang' }}" | ||
uses: "./.github/workflows/_jobs_publish.yml" | ||
secrets: "inherit" |