diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 46c8cc6..65b88c7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,15 +15,20 @@ jobs: uses: actions/setup-node@v4 with: node-version-file: .nvmrc + cache: 'npm' - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: '7.4' + tools: composer:v2 - - name: Install tooling + - name: Install JS tooling run: npm install + - name: Install PHP tooling + run: composer install + - name: Lint run: npm run lint