Skip to content

Commit

Permalink
try it
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesward committed Mar 30, 2024
1 parent 7656bd7 commit 97c6af4
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/elm-worker.yaml
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
on:
workflow_run:
workflows: [scenario-server]
types: [completed]
# Generated file. DO NOT EDIT.
'on':
push:
paths:
- elm-worker/**
- .github/workflows/elm-worker.yaml
- elm-worker/**
- .github/workflows/elm-worker.yaml
pull_request:
paths:
- elm-worker/**
- .github/workflows/elm-worker.yaml

- elm-worker/**
- .github/workflows/elm-worker.yaml
workflow_run:
workflows:
- scenario-server
types:
- completed
jobs:
test:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run == null || github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v4

- uses: jorelali/setup-elm@v5
with:
elm-version: 0.19.1

- run: |
echo Compiling Elm sources...
for num in {1..9}; do
elm make --optimize --output=app/EasyRacer/Scenario$num.js src/EasyRacer/Scenario$num.elm
done
npm install --no-fund
npm install -g --save-dev --no-fund jest
npm test
working-directory: ./elm-worker
- uses: actions/checkout@v4
- uses: jorelali/setup-elm@v5
with:
elm-version: 0.19.1
- run: |-
echo Compiling Elm sources...
for num in {1..9}; do
elm make --optimize --output=app/EasyRacer/Scenario$num.js src/EasyRacer/Scenario$num.elm
done
npm install --no-fund
npm install -g --save-dev --no-fund jest
npm test
working-directory: ./elm-worker

0 comments on commit 97c6af4

Please sign in to comment.