Merge branch 'master' into feature/TF-726-refactor-Frontend #147
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Quality | |
on: [ push ] | |
jobs: | |
build: | |
uses: ./.github/workflows/build-deploy.yml | |
with: | |
upload-artifact: true | |
artifact-name: quality-check-build | |
check-links: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Download build | |
uses: actions/download-artifact@v4 | |
with: | |
name: quality-check-build | |
path: ./public | |
- run: ls -ahl | |
- name: Run htmltest | |
uses: wjdp/htmltest-action@master | |
with: | |
config: .htmltest.yml | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
- name: Install | |
run: npm install | |
- name: Lint | |
run: npm run lint |