From 5691a051a61228af789d9e3df5326fd857259f09 Mon Sep 17 00:00:00 2001 From: James Collins Date: Fri, 24 Mar 2023 09:24:41 +1000 Subject: [PATCH] updated test to run vue tests --- .github/workflows/laravel.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index 09acc0e..8bd2d61 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -30,3 +30,11 @@ jobs: DB_CONNECTION: sqlite DB_DATABASE: database/database.sqlite run: vendor/bin/phpunit + - name: Install Node.js + uses: actions/setup-node@v2 + with: + node-version: "16.x" + - name: Install dependencies + run: npm ci + - name: Run Vue tests + run: npm run test