Skip to content

ci: try make ci always build #221

ci: try make ci always build

ci: try make ci always build #221

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
depver:
if: "contains(github.event.head_commit.message, '(release)')"
uses: ./.github/workflows/action-depver.yml
lint:
uses: ./.github/workflows/action-lint.yml
with:
beta: false
audit:
uses: ./.github/workflows/action-audit.yml
build:
uses: ./.github/workflows/action-build.yml
needs: [depver, lint, audit]
if: ${{ always() && contains(fromJSON('["success", "skipped"]'), step.lint.depver) && step.lint.outcome == "success" && step.audit.outcome == "success" }}

Check failure on line 28 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 28, Col: 9): Unrecognized named-value: 'step'. Located at position 58 within expression: always() && contains(fromJSON('["success", "skipped"]'), step.lint.depver) && step.lint.outcome == "success" && step.audit.outcome == "success"
with:
name: fontfor