Merge pull request #8092 from Ocelot-Social-Community/dependabot/npm_… #1957
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: "frontend:test:lint code with defined linters" | |
on: push | |
jobs: | |
# only (but most important) job from this workflow required for pull requests | |
# check results serve as run conditions for all other jobs here | |
files-changed: | |
name: Detect File Changes - frontend-test-lint-code | |
runs-on: ubuntu-latest | |
outputs: | |
changes: ${{ steps.changes.outputs.frontend-test-lint-code }} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.1.7 | |
- name: Check for frontend file changes | |
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
id: changes | |
with: | |
token: ${{ github.token }} | |
filters: .github/file-filters.yml | |
list-files: shell | |
lint: | |
if: needs.files-changed.outputs.changes == 'true' | |
name: Lint - Frontend | |
needs: files-changed | |
runs-on: ubuntu-latest | |
env: | |
WORKING_DIRECTORY: ./frontend | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.1.7 | |
- name: Frontend | Lint | |
run: npm install && npm run test:lint | |
working-directory: ${{env.WORKING_DIRECTORY}} |