tests #871
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: | |
pull_request: | |
types: | |
- opened | |
- ready_for_review | |
- reopened | |
- synchronize | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
doc-tests: | |
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
tools: composer:v2 | |
coverage: xdebug | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: composer install --no-interaction --prefer-dist --optimize-autoloader | |
- name: Build CSS and JS files | |
run: npm install && npm run build | |
- name: Copy .env | |
run: php -r "file_exists('.env') || copy('.env.example', '.env');" | |
- name: Generate key | |
run: php artisan key:generate | |
- name: Execute tests via PEST(PHPUnit) | |
env: | |
TORCHLIGHT_TOKEN: ${{ secrets.TORCHLIGHT_TOKEN }} | |
run: ./vendor/bin/pest |