Skip to content

Commit

Permalink
💚 Fix changed-files check in CI to make tests run properly
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenbal committed Oct 3, 2024
1 parent 77d0c3a commit d03fd1b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,27 @@ jobs:
name: Determine changed files
steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 2

- name: Get changed PY files
id: changed-py-files
uses: tj-actions/changed-files@v41
uses: tj-actions/changed-files@v8.5
with:
files: |
^src/.+\.py
- name: Get changed JS files
id: changed-js-files
uses: tj-actions/changed-files@v41
uses: tj-actions/changed-files@v8.5
with:
files: |
^src/.+\.js
- name: Get changed requirements files
id: changed-requirements
uses: tj-actions/changed-files@v41
uses: tj-actions/changed-files@v8.5
with:
files: ^requirements/.+\.txt$

Expand Down

0 comments on commit d03fd1b

Please sign in to comment.