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