Skip to content

Fixed text so it displays correctly in dark mode. #9

Fixed text so it displays correctly in dark mode.

Fixed text so it displays correctly in dark mode. #9

Workflow file for this run

on:
push:
branches:
- staging
name: CI Staging
concurrency:
group: staging
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
container:
image: kirschbaumdevelopment/laravel-test-runner:8.3
services:
mysql:
image: mysql:8.0
env:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: test
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- uses: actions/checkout@v3
- name: Get nova setup for installation
run: |
composer config "http-basic.nova.laravel.com" "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_PASSWORD }}"
- name: Install composer dependencies
run: |
composer install --no-scripts
- name: Install front-end dependencies
run: |
npm install
npm run build
- name: Prepare Venture
run: |
cp .env.ci .env.testing
- name: Run Testsuite
run: vendor/bin/pest
deploy:
runs-on: ubuntu-latest
needs: test
steps:
- name: Deploy to Laravel Forge
run: curl ${{ secrets.FORGE_STAGING_DEPLOYMENT_WEBHOOK }}