Skip to content

fix: update MapState types #79

fix: update MapState types

fix: update MapState types #79

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 }}
release:
needs: [typescript, build]

Check failure on line 25 in .github/workflows/package.yml

View workflow run for this annotation

GitHub Actions / Typescript Package CI

Invalid workflow file

The workflow is not valid. .github/workflows/package.yml (Line: 25, Col: 25): Job 'release' depends on unknown job 'build'.

Check failure on line 25 in .github/workflows/package.yml

View workflow run for this annotation

GitHub Actions / Typescript Package CI

Invalid workflow file

The workflow is not valid. .github/workflows/package.yml (Line: 25, Col: 25): Job 'release' depends on unknown job '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 }}