mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
workflow for stylelint
This commit is contained in:
parent
28f8c9e8ac
commit
5c308e41b9
29
.github/workflows/test.yml
vendored
29
.github/workflows/test.yml
vendored
@ -217,6 +217,35 @@ jobs:
|
|||||||
- name: frontend | Lint
|
- name: frontend | Lint
|
||||||
run: docker run --rm gradido/frontend:test yarn run lint
|
run: docker run --rm gradido/frontend:test yarn run lint
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# JOB: STYLELINT FRONTEND ####################################################
|
||||||
|
##############################################################################
|
||||||
|
stylelint_frontend:
|
||||||
|
name: Stylelint - Frontend
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [build_test_frontend]
|
||||||
|
steps:
|
||||||
|
##########################################################################
|
||||||
|
# CHECKOUT CODE ##########################################################
|
||||||
|
##########################################################################
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
##########################################################################
|
||||||
|
# DOWNLOAD DOCKER IMAGE ##################################################
|
||||||
|
##########################################################################
|
||||||
|
- name: Download Docker Image (Frontend)
|
||||||
|
uses: actions/download-artifact@v2
|
||||||
|
with:
|
||||||
|
name: docker-frontend-test
|
||||||
|
path: /tmp
|
||||||
|
- name: Load Docker Image
|
||||||
|
run: docker load < /tmp/frontend.tar
|
||||||
|
##########################################################################
|
||||||
|
# STYLELINT FRONTEND #####################################################
|
||||||
|
##########################################################################
|
||||||
|
- name: frontend | Stylelint
|
||||||
|
run: docker run --rm gradido/frontend:test yarn run stylelint
|
||||||
|
|
||||||
##############################################################################
|
##############################################################################
|
||||||
# JOB: LINT ADMIN INTERFACE ##################################################
|
# JOB: LINT ADMIN INTERFACE ##################################################
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user