Website/.gitea/workflows/qs.yml
Snoweuph 1fdc062ecd
Some checks failed
Quality Check / Check (push) Failing after 8s
#1: QS Workflow
2024-07-13 12:55:04 +02:00

21 lines
571 B
YAML

name: "Quality Check"
on: push
jobs:
quality-controll:
name: "Check"
runs-on: "ubuntu-latest"
container:
image: "git.euph.dev/actions/runner-php-8.3:latest"
steps:
- name: "Checkout"
uses: "https://git.euph.dev/actions/checkout@v3"
- name: "Setup Volta"
uses: "https://git.euph.dev/actions/volta@v4"
- name: "Prepare"
run: |
curl https://get.volta.sh | bash
cd app
composer check-platform-reqs
composer install --no-scripts --audit
npm install --no-fund