fix broken config for workflow

This commit is contained in:
John McLear 2021-01-29 10:40:37 +00:00
parent f6413c8e39
commit 5d76206b93

View file

@ -90,12 +90,12 @@ jobs:
run: echo "::set-output name=sha_short::$(git rev-parse --short ${{ github.sha }})" run: echo "::set-output name=sha_short::$(git rev-parse --short ${{ github.sha }})"
- name: Write custom settings.json with loglevel WARN - name: Write custom settings.json with loglevel WARN
run: | run: "sed 's/\"loglevel\": \"INFO\",/\"loglevel\": \"WARN\",/' < settings.json.template > settings.json"
"sed 's/\"loglevel\": \"INFO\",/\"loglevel\": \"WARN\",/' < settings.json.template > settings.json"
- name: Set minify to false - name: Set minify to false
run: "sed -i 's/\"minify\": \"true\",/\"minify\": \"false\",/' settings.json" run: "sed -i 's/\"minify\": \"true\",/\"minify\": \"false\",/' settings.json"
# XXX we should probably run all tests, because plugins could effect their results # XXX we should probably run all tests, because plugins could effect their results
- name: Remove standard frontend test files, so only plugin tests are run - name: Remove standard frontend test files, so only plugin tests are run
run: rm tests/frontend/specs/* run: rm tests/frontend/specs/*