From fcfa8aa1c2e988258b8b414a77fdc51bdd38361e Mon Sep 17 00:00:00 2001 From: THEVENOUX Jean-Philippe Date: Tue, 5 Mar 2024 12:48:43 +0100 Subject: [PATCH] chore: action name + ci Change Action name change "install" to "ci", to better build cf: https://docs.npmjs.com/cli/v10/commands/npm-ci --- .github/workflows/laravel.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index 5b1dd0b..cffab5b 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -1,4 +1,4 @@ -name: Laravel +name: Test on: push: @@ -32,7 +32,7 @@ jobs: mkdir -p database touch database/database.sqlite - name: Install js dependency - run: npm install + run: npm ci - name: Build assets run: npm run build - name: Execute tests (Unit and Feature tests) via Artisan command