@@ -31,15 +31,14 @@ jobs:
31
31
fail-fast : false
32
32
matrix :
33
33
# The same array lives in test-windows.yml, so make any updates there too.
34
- test-group :
35
- [
34
+ test-group : [
36
35
content,
37
36
graphql,
38
37
meta,
39
38
rendering,
40
39
routing,
41
40
unit,
42
- linting,
41
+ # linting,
43
42
translations,
44
43
]
45
44
steps :
@@ -102,20 +101,20 @@ jobs:
102
101
- name : Checkout LFS objects
103
102
run : git lfs checkout
104
103
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: ' '
112
111
113
- - name : Insight into changed files
114
- run : |
112
+ # - name: Insight into changed files
113
+ # run: |
115
114
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
119
118
120
119
- name : Setup node
121
120
uses : actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561
@@ -137,6 +136,6 @@ jobs:
137
136
138
137
- name : Run tests
139
138
env :
140
- DIFF_FILE : get_diff_files.txt
139
+ # DIFF_FILE: get_diff_files.txt
141
140
CHANGELOG_CACHE_FILE_PATH : tests/fixtures/changelog-feed.json
142
141
run : npm test -- tests/${{ matrix.test-group }}/
0 commit comments