Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
emma-sg committed Jan 7, 2025
1 parent 46e6f92 commit 031d6f1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ansible-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ jobs:
- 'ansible/**'
- '.github/workflows/ansible-lint.yaml'
debug:
needs: paths-filter
runs-on: ubuntu-latest
steps:
- name: echo
run: echo "${{steps.filter.outputs.matches}}"

build:
needs: paths-filter
if: needs.paths-filter.outputs.matches == 'true'
Expand Down
15 changes: 5 additions & 10 deletions .github/workflows/frontend-lint-test-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,11 @@ jobs:
- 'frontend/*.ts'
- '.github/workflows/frontend-lint-test-build.yaml'
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: true

unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
needs: paths-filter
if: needs.paths-filter.outputs.src == 'true'
if: needs.paths-filter.outputs.matches == 'true'
strategy:
matrix:
node: [20, 22]
Expand Down Expand Up @@ -107,7 +102,7 @@ jobs:
integration-tests:
name: Integration Tests
needs: paths-filter
if: needs.paths-filter.outputs.src == 'true'
if: needs.paths-filter.outputs.matches == 'true'
timeout-minutes: 60
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -190,7 +185,7 @@ jobs:
name: Lint
runs-on: ubuntu-latest
needs: paths-filter
if: needs.paths-filter.outputs.src == 'true'
if: needs.paths-filter.outputs.matches == 'true'
strategy:
matrix:
node: [20, 22]
Expand Down Expand Up @@ -223,7 +218,7 @@ jobs:
name: Localize
runs-on: ubuntu-latest
needs: paths-filter
if: needs.paths-filter.outputs.src == 'true'
if: needs.paths-filter.outputs.matches == 'true'
strategy:
matrix:
node: [20, 22]
Expand Down Expand Up @@ -256,7 +251,7 @@ jobs:
name: Build
runs-on: ubuntu-latest
needs: paths-filter
if: needs.paths-filter.outputs.src == 'true'
if: needs.paths-filter.outputs.matches == 'true'
strategy:
matrix:
node: [20, 22]
Expand Down

0 comments on commit 031d6f1

Please sign in to comment.