Skip to content

2.0.14

2.0.14 #5

Workflow file for this run

name: Workflow
on:
push:
branches:
- main
paths:
- "package.json"
jobs:
check-version:
uses: Sovgut/state/.github/workflows/check-version.yml@main
build:
needs:
- check-version
if: needs.check-version.outputs.is_changed == 'true'
uses: Sovgut/state/.github/workflows/build.yml@main

Check failure on line 18 in .github/workflows/workflow.yml

View workflow run for this annotation

GitHub Actions / Workflow

Invalid workflow file

The workflow is not valid. .github/workflows/workflow.yml (Line: 18, Col: 11): Input node-version is required, but not provided while calling. .github/workflows/workflow.yml (Line: 20, Col: 21): Invalid input, node_version is not defined in the referenced workflow.
with:
node_version: '20.x'
package_version: ${{ needs.check-version.outputs.version }}
test:
needs:
- check-version
- build
uses: Sovgut/state/.github/workflows/test.yml@main
with:
node_version: '20.x'
deploy:
needs:
- check-version
- build
- test
uses: Sovgut/state/.github/workflows/deploy.yml@main
with:
package_version: ${{ needs.check-version.outputs.version }}