From 9ce3a77aad23b7cf22ed6ad5bd9d06f661cf4b54 Mon Sep 17 00:00:00 2001 From: Julio Date: Wed, 8 Sep 2021 12:14:39 +0200 Subject: [PATCH] Tests: Add assets --- .github/workflows/phpunit.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 1d1f3e37df..4e8b410c81 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -16,6 +16,11 @@ jobs: - name: Checkout uses: actions/checkout@v2 + - name: Setup node + run: | + sudo apt-get update + sudo apt-get install nodejs npm + - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@v2 with: @@ -44,6 +49,15 @@ jobs: - name: Install dependencies with composer run: composer install --no-progress + - name: Install assets + run: php bin/console assets:install + + - name: Install Yarn + run: | + sudo npm install -g yarn + yarn set version 2.4.2 + yarn --version + - name: Check PHP settings run: | php -ini