21 lines
571 B
YAML
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
|