Skip to content

wip

wip #2

Workflow file for this run

name: Run tests
on: [push]
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
coverage: none
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 'v19.7.0' # Specify your Node.js version here
- name: Run composer install
run: composer install -n --prefer-dist
- name: Run npm install
run: npm install
- name: Build JavaScript assets
run: npm run build
- name: Prepare Laravel Application
run: |
cp .env.ci .env
php artisan key:generate
- name: Run tests
run: php artisan test