#1: QS Workflow
All checks were successful
Quality Check / Lint (push) Successful in 37s

This commit is contained in:
Snoweuph 2024-07-13 12:32:40 +02:00
parent 37a63c29cc
commit 01483d1f9e
Signed by: Snoweuph
GPG key ID: A494330694B208EF

View file

@ -2,17 +2,20 @@ name: "Quality Check"
on: push
jobs:
quality-controll:
name: "Check"
lint:
name: "Lint"
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: "composer install"
- name: "Install Dependencies"
working-directory: app
run: |
composer check-platform-reqs
composer install --no-scripts --audit
- name: "npm install"
run: "npm install --no-fund"
parallel --halt soon,fail=1 ::: \
"composer check-platform-reqs && composer install --no-scripts --audit" \
"npm install --no-fund"
- name: "Lint"
working-directory: app
run: "node node_modules/eslint/bin/eslint.js frontend"