From e4dbc8bb2717891399a9139bec40ea266aca7326 Mon Sep 17 00:00:00 2001 From: mahula Date: Tue, 30 Sep 2025 16:51:46 +0200 Subject: [PATCH] add linting workflow for e2e testing related files --- .github/workflows/test.lint.cypress.yml | 34 +++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/test.lint.cypress.yml diff --git a/.github/workflows/test.lint.cypress.yml b/.github/workflows/test.lint.cypress.yml new file mode 100644 index 00000000..e17266d4 --- /dev/null +++ b/.github/workflows/test.lint.cypress.yml @@ -0,0 +1,34 @@ +name: test:lint:licypressb + +on: push + +jobs: + files-changed: + name: Detect File Changes - lint - cypress + runs-on: ubuntu-latest + outputs: + lint: ${{ steps.filter.outputs.cypress }} + steps: + - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0 + - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 + id: filter + with: + filters: | + lint: + - '.github/workflows/test.lint.cypress.yml' + - '.github/workflows/test.e2e.yml' + - 'cypress/**/*' + + lint: + if: needs.files-changed.outputs.cypress == 'true' + name: Lint - cypress + needs: files-changed + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0 + - uses: actions/setup-node@89d709d423dc495668cd762a18dd4a070611be3f # v5.0.0 + with: + node-version-file: '.tool-versions' + - name: Lint + run: npm install && npm run test:lint:eslint + working-directory: cypress/