From 3d4de2001e7eebec498f3d644ca1ba47bfc627ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Mon, 25 May 2020 21:44:34 +0200 Subject: [PATCH] Update tests.yml --- .github/workflows/tests.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 762914f1..415f0dc8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -22,9 +22,21 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} - coverage: xdebug + coverage: pcov - name: Install composer dependencies run: composer install --prefer-dist --no-progress + - name: Setup node + uses: actions/setup-node@v1 + with: + node-version: '12' + - name: Install yarn dependencies + run: yarn install + + - name: Build frontend + run: yarn build + + - name: Run PHPunit + run: ./bin/phpunit