Split install and run commands in github actions (#3112)

... makes looking at the checks a little easier in case they fail

---------

Co-authored-by: veeck <michael@veeck.de>
This commit is contained in:
Veeck
2023-05-27 22:22:26 +02:00
committed by GitHub
parent eceec8285d
commit c7405b76b3
5 changed files with 475 additions and 464 deletions

View File

@@ -27,11 +27,13 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: "Install dependencies and run tests"
- name: "Install dependencies"
run: |
npm run install-mm:dev
- name: "Run tests"
run: |
Xvfb :99 -screen 0 1024x768x16 &
export DISPLAY=:99
npm run install-mm:dev
touch css/custom.css
npm run test:prettier
npm run test:js