2024-02-04 04:48:28 +00:00
|
|
|
name: "Quality Check"
|
|
|
|
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
|
|
quality-controll:
|
|
|
|
name: "Check"
|
|
|
|
runs-on: "ubuntu-latest"
|
|
|
|
container:
|
2024-07-12 22:56:04 +00:00
|
|
|
image: "git.euph.dev/actions/runner-php-8.3:latest"
|
2024-02-04 04:48:28 +00:00
|
|
|
steps:
|
2024-02-11 08:53:15 +00:00
|
|
|
- name: "Checkout"
|
|
|
|
uses: "https://git.euph.dev/actions/checkout@v3"
|
2024-07-13 10:32:40 +00:00
|
|
|
- name: "Setup Volta"
|
|
|
|
uses: "https://git.euph.dev/actions/volta@v4"
|
|
|
|
- name: "Prepare"
|
2024-02-04 04:48:28 +00:00
|
|
|
run: |
|
2024-07-13 10:32:40 +00:00
|
|
|
curl https://get.volta.sh | bash
|
|
|
|
cd app
|
2024-03-24 14:35:50 +00:00
|
|
|
composer check-platform-reqs
|
|
|
|
composer install --no-scripts --audit
|
2024-07-13 10:32:40 +00:00
|
|
|
npm install --no-fund
|