This repository was archived by the owner on Feb 9, 2025. It is now read-only.
Bump league/commonmark from 2.5.3 to 2.6.0 #169
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set Node.js 16.x | |
| uses: actions/[email protected] | |
| with: | |
| node-version: 16.x | |
| - name: Install Yarn Dependencies | |
| uses: borales/actions-yarn@v4 | |
| with: | |
| cmd: install | |
| - name: Build Frontend | |
| uses: borales/actions-yarn@v4 | |
| with: | |
| cmd: prod | |
| - name: Install Composer Dependencies | |
| run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist | |
| - name: Prepare Laravel Application | |
| run: | | |
| cp .env.example .env | |
| php artisan key:generate | |
| - name: Run Test Suite | |
| run: php artisan test | |
| deploy: | |
| runs-on: ubuntu-latest | |
| needs: build-and-test | |
| if: github.ref == 'refs/heads/main' | |
| steps: | |
| - name: Deploy to Laravel Forge | |
| run: curl ${{ secrets.FORGE_DEPLOYMENT_WEBHOOK }} |