Website/.gitea/workflows/qs.yml

19 lines
446 B
YAML
Raw Normal View History

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: "Prepare"
2024-02-04 04:48:28 +00:00
run: |
2024-07-13 10:32:40 +00:00
cd app
composer check-platform-reqs
composer install --no-scripts --audit
2024-07-13 10:32:40 +00:00
npm install --no-fund