@@ -31,15 +31,14 @@ jobs:
3131 fail-fast : false
3232 matrix :
3333 # The same array lives in test-windows.yml, so make any updates there too.
34- test-group :
35- [
34+ test-group : [
3635 content,
3736 graphql,
3837 meta,
3938 rendering,
4039 routing,
4140 unit,
42- linting,
41+ # linting,
4342 translations,
4443 ]
4544 steps :
@@ -102,20 +101,20 @@ jobs:
102101 - name : Checkout LFS objects
103102 run : git lfs checkout
104103
105- - name : Gather files changed
106- uses : trilom/file-changes-action@a6ca26c14274c33b15e6499323aac178af06ad4b
107- id : get_diff_files
108- with :
109- # So that `steps.get_diff_files.outputs.files` becomes
110- # a string like `foo.js path/bar.md`
111- output : ' '
104+ # - name: Gather files changed
105+ # uses: trilom/file-changes-action@a6ca26c14274c33b15e6499323aac178af06ad4b
106+ # id: get_diff_files
107+ # with:
108+ # # So that `steps.get_diff_files.outputs.files` becomes
109+ # # a string like `foo.js path/bar.md`
110+ # output: ' '
112111
113- - name : Insight into changed files
114- run : |
112+ # - name: Insight into changed files
113+ # run: |
115114
116- # Must to do this because the list of files can be HUGE. Especially
117- # in a repo-sync when there are lots of translation files involved.
118- echo "${{ steps.get_diff_files.outputs.files }}" > get_diff_files.txt
115+ # # Must to do this because the list of files can be HUGE. Especially
116+ # # in a repo-sync when there are lots of translation files involved.
117+ # echo "${{ steps.get_diff_files.outputs.files }}" > get_diff_files.txt
119118
120119 - name : Setup node
121120 uses : actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561
@@ -137,6 +136,6 @@ jobs:
137136
138137 - name : Run tests
139138 env :
140- DIFF_FILE : get_diff_files.txt
139+ # DIFF_FILE: get_diff_files.txt
141140 CHANGELOG_CACHE_FILE_PATH : tests/fixtures/changelog-feed.json
142141 run : npm test -- tests/${{ matrix.test-group }}/
0 commit comments