Skip to content

Commit

Permalink
test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtieReus committed Apr 12, 2024
1 parent c8bf55d commit 63ee4db
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/matrix-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Juno (build & deploy all apps)

on:
push:
branches:
- gh-matrix

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# On release creation
# release:
# types: [created]

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "apps/exampleapp"
cancel-in-progress: true

# Default to bash
defaults:
run:
shell: bash

# run_tests:
# needs: collect_dirs
# runs-on: ubuntu-latest
# strategy:
# matrix:
# dir: ${{ fromJson(needs.collect_dirs.outputs.dirs) }}
# steps:
# - run: echo ${{ matrix.dir }}

jobs:
collect_dirs:
runs-on: [ubuntu-latest]
outputs:
dirs: ${{ steps.dirs.outputs.dirs }}
steps:
- uses: actions/checkout@v4
- id: dirs
run: |
echo "dirs=$(ls -d ./apps/*/ | jq --raw-input --slurp --compact-output 'split("\n")[:-1]')"
echo "dirs=$(ls -d ./apps/*/ | jq --raw-input --slurp --compact-output 'split("\n")[:-1]')" >> ${GITHUB_OUTPUT}

0 comments on commit 63ee4db

Please sign in to comment.