Skip to content

ci(actions): parametrizing across packages [CNDL-489] #1

ci(actions): parametrizing across packages [CNDL-489]

ci(actions): parametrizing across packages [CNDL-489] #1

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
ci2:
strategy:
# super important if you want to see all results, even if one fails
# fail-fast is true by default
fail-fast: false
matrix:
workingDirectory: [ "packages/npm/send" ]
include:
- workingDirectory: "packages/npm/send"
job-name: "Send it"
uses: ./.github/workflows/shared.yml # calls the one above ^

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

View workflow run for this annotation

GitHub Actions / .github/workflows/prs.yml

Invalid workflow file

error parsing called workflow ".github/workflows/prs.yml" -> "./.github/workflows/shared.yml" : failed to fetch workflow: workflow was not found.
with:
workingDirectory: ${{ matrix.workingDirectory }}
secrets: inherit
name: ${{ matrix.job-name }}