From c3e6212f73d051b1fe3880dbe0283ed65bfcead7 Mon Sep 17 00:00:00 2001 From: Austin Godber Date: Fri, 4 Aug 2023 17:07:34 -0700 Subject: [PATCH] sdsdsd --- .github/workflows/test.yaml | 33 ++++++++++++++++++++------------- 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 6931874..9bfdf82 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -12,24 +12,31 @@ jobs: setup: runs-on: ubuntu-latest steps: + - run: printenv - run: echo $MATRIX - - run: | - echo "MATRIX: $MATRIX" >> $GITHUB_OUTPUT + # - run: echo $MATRIX | jq . + - run: echo "matrix=$MATRIX" >> $GITHUB_OUTPUT outputs: matrix: ${{ toJson(steps.*.outputs.matrix) }} - - build: + check: + runs-on: ubuntu-latest needs: setup - runs-on: ubuntu-latest strategy: matrix: ${{ fromJson(needs.setup.outputs.matrix) }} - steps: - - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - run: yarn test - - run: printenv + + # build: + # needs: + # setup + # runs-on: ubuntu-latest + # strategy: + # matrix: ${{ fromJson(needs.setup.outputs.matrix) }} + # steps: + # - uses: actions/checkout@v3 + # - name: Use Node.js ${{ matrix.node-version }} + # uses: actions/setup-node@v3 + # with: + # node-version: ${{ matrix.node-version }} + # - run: yarn test + # - run: printenv