Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

unclear why this is failing #4

unclear why this is failing

unclear why this is failing #4

Workflow file for this run

name: Tests
on: [push]
jobs:
list-projects:
runs-on: ubuntu-latest
outputs:
languages: ${{ steps.build-matrix.outputs.result.languages }}
steps:
- uses: actions/checkout@v2
- name: discover all examples
id: build-matrix
run: node .github/generate-test-steps.js | tee -a "$GITHUB_OUTPUT"
test-javascript:
needs: list-projects
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.list-projects.outputs.languages).javascript }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '20.4.0'
- name: test setup
run: ${{ matrix.preTestCommands }}
working-directory: javascript/${{ matrix.example }}
if: matrix.preTestCommands != null
- name: test
run: ${{ matrix.testCommands }}
working-directory: javascript/${{ matrix.example }}
if: matrix.testCommands != null