From 27839a35a51a6f2847ffef29acc3a36294e00add Mon Sep 17 00:00:00 2001 From: raccoon254 Date: Fri, 17 May 2024 08:36:38 +0300 Subject: [PATCH] Added node js --- .github/workflows/laravel.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index 6b5a649..3f59697 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -30,6 +30,14 @@ jobs: run: | mkdir -p database touch database/database.sqlite + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: '14' + - name: Install npm dependencies + run: npm install + - name: Build assets + run: npm run prod - name: Execute tests (Unit and Feature tests) via PHPUnit/Pest env: DB_CONNECTION: sqlite