Skip to content

ci: run all in one check (#88) #2

ci: run all in one check (#88)

ci: run all in one check (#88) #2

Workflow file for this run

name: check
on:
push:
branches:
- main
- prod-preview
pull_request:
branches:
- main
- prod-preview
types:
- opened
- synchronize
concurrency:
group: Release
cancel-in-progress: false
jobs:
lint:
uses: ./.github/workflows/lint.yml

Check failure on line 22 in .github/workflows/check.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/check.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/check.yaml" -> "./.github/workflows/lint.yml" : failed to fetch workflow: workflow was not found.
test:
uses: ./.github/workflows/test.yml
check:
if: always()
needs: [lint, test]
runs-on: ubuntu-latest
steps:
- uses: re-actors/alls-green@release/v1
id: all-green
with:
jobs: ${{ toJSON(needs)}}