Skip to content

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

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

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

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
ci2:
name: ci3 running in ${{ matrix.workingDirectory }}
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" ]
uses: ./.github/workflows/shared.yml # calls the one above ^
with:
workingDirectory: ${{ matrix.workingDirectory }}
secrets: inherit