@@ -52,113 +52,113 @@ jobs:
52
52
key : build-${{ github.sha }}
53
53
path : ${{ env.BUILD-CACHE-LIST }}
54
54
55
- cspell :
56
- name : CSpell
57
- runs-on : ubuntu-latest
58
- needs : [install]
59
- steps :
60
- - uses : actions/checkout@v4
61
- - uses : actions/setup-node@v4
62
- - id : cache-modules
63
- uses : actions/cache@v4
64
- with :
65
- path : |
66
- **/node_modules
67
- key : modules-${{ github.sha }}
68
- - run : yarn lint-cspell
55
+ # cspell:
56
+ # name: CSpell
57
+ # runs-on: ubuntu-latest
58
+ # needs: [install]
59
+ # steps:
60
+ # - uses: actions/checkout@v4
61
+ # - uses: actions/setup-node@v4
62
+ # - id: cache-modules
63
+ # uses: actions/cache@v4
64
+ # with:
65
+ # path: |
66
+ # **/node_modules
67
+ # key: modules-${{ github.sha }}
68
+ # - run: yarn lint-cspell
69
69
70
- prettier :
71
- name : Prettier
72
- runs-on : ubuntu-latest
73
- needs : [install]
74
- steps :
75
- - uses : actions/checkout@v4
76
- - uses : actions/setup-node@v4
77
- - id : cache-modules
78
- uses : actions/cache@v4
79
- with :
80
- path : |
81
- **/node_modules
82
- key : modules-${{ github.sha }}
83
- - run : yarn pretty-check
70
+ # prettier:
71
+ # name: Prettier
72
+ # runs-on: ubuntu-latest
73
+ # needs: [install]
74
+ # steps:
75
+ # - uses: actions/checkout@v4
76
+ # - uses: actions/setup-node@v4
77
+ # - id: cache-modules
78
+ # uses: actions/cache@v4
79
+ # with:
80
+ # path: |
81
+ # **/node_modules
82
+ # key: modules-${{ github.sha }}
83
+ # - run: yarn pretty-check
84
84
85
- jest :
86
- name : Jest Unit & Integration Tests
87
- runs-on : ubuntu-latest
88
- needs : [install]
89
- steps :
90
- - uses : actions/checkout@v4
91
- - uses : actions/setup-node@v4
92
- - id : cache-modules
93
- uses : actions/cache@v4
94
- with :
95
- path : |
96
- **/node_modules
97
- key : modules-${{ github.sha }}
98
- - run : yarn test --coverage
99
- - uses : codecov/codecov-action@v4
100
- with :
101
- token : ${{ secrets.CODECOV_TOKEN }}
102
- files : coverage/lcov.info
103
- fail_ci_if_error : true
104
- verbose : true
85
+ # jest:
86
+ # name: Jest Unit & Integration Tests
87
+ # runs-on: ubuntu-latest
88
+ # needs: [install]
89
+ # steps:
90
+ # - uses: actions/checkout@v4
91
+ # - uses: actions/setup-node@v4
92
+ # - id: cache-modules
93
+ # uses: actions/cache@v4
94
+ # with:
95
+ # path: |
96
+ # **/node_modules
97
+ # key: modules-${{ github.sha }}
98
+ # - run: yarn test --coverage
99
+ # - uses: codecov/codecov-action@v4
100
+ # with:
101
+ # token: ${{ secrets.CODECOV_TOKEN }}
102
+ # files: coverage/lcov.info
103
+ # fail_ci_if_error: true
104
+ # verbose: true
105
105
106
- vitest :
107
- name : Vitest Unit Tests
108
- runs-on : ubuntu-latest
109
- needs : [build]
110
- steps :
111
- - uses : actions/checkout@v4
112
- - uses : actions/setup-node@v4
113
- - id : cache-modules
114
- uses : actions/cache@v4
115
- with :
116
- path : |
117
- **/node_modules
118
- key : modules-${{ github.sha }}
119
- - uses : actions/cache@v4
120
- with :
121
- key : build-${{ github.sha }}
122
- path : ${{ env.BUILD-CACHE-LIST }}
123
- - run : yarn vitest
106
+ # vitest:
107
+ # name: Vitest Unit Tests
108
+ # runs-on: ubuntu-latest
109
+ # needs: [build]
110
+ # steps:
111
+ # - uses: actions/checkout@v4
112
+ # - uses: actions/setup-node@v4
113
+ # - id: cache-modules
114
+ # uses: actions/cache@v4
115
+ # with:
116
+ # path: |
117
+ # **/node_modules
118
+ # key: modules-${{ github.sha }}
119
+ # - uses: actions/cache@v4
120
+ # with:
121
+ # key: build-${{ github.sha }}
122
+ # path: ${{ env.BUILD-CACHE-LIST }}
123
+ # - run: yarn vitest
124
124
125
- eslint :
126
- name : ESLint
127
- runs-on : ubuntu-latest
128
- needs : [build]
129
- steps :
130
- - uses : actions/checkout@v4
131
- - uses : actions/setup-node@v4
132
- - id : cache-modules
133
- uses : actions/cache@v4
134
- with :
135
- path : |
136
- **/node_modules
137
- key : modules-${{ github.sha }}
138
- - uses : actions/cache@v4
139
- with :
140
- key : build-${{ github.sha }}
141
- path : ${{ env.BUILD-CACHE-LIST }}
142
- - run : yarn eslint
125
+ # eslint:
126
+ # name: ESLint
127
+ # runs-on: ubuntu-latest
128
+ # needs: [build]
129
+ # steps:
130
+ # - uses: actions/checkout@v4
131
+ # - uses: actions/setup-node@v4
132
+ # - id: cache-modules
133
+ # uses: actions/cache@v4
134
+ # with:
135
+ # path: |
136
+ # **/node_modules
137
+ # key: modules-${{ github.sha }}
138
+ # - uses: actions/cache@v4
139
+ # with:
140
+ # key: build-${{ github.sha }}
141
+ # path: ${{ env.BUILD-CACHE-LIST }}
142
+ # - run: yarn eslint
143
143
144
- types-check :
145
- name : Types Check
146
- runs-on : ubuntu-latest
147
- needs : [build]
148
- steps :
149
- - uses : actions/checkout@v4
150
- - uses : actions/setup-node@v4
151
- - id : cache-modules
152
- uses : actions/cache@v4
153
- with :
154
- path : |
155
- **/node_modules
156
- key : modules-${{ github.sha }}
157
- - uses : actions/cache@v4
158
- with :
159
- key : build-${{ github.sha }}
160
- path : ${{ env.BUILD-CACHE-LIST }}
161
- - run : yarn types:check
144
+ # types-check:
145
+ # name: Types Check
146
+ # runs-on: ubuntu-latest
147
+ # needs: [build]
148
+ # steps:
149
+ # - uses: actions/checkout@v4
150
+ # - uses: actions/setup-node@v4
151
+ # - id: cache-modules
152
+ # uses: actions/cache@v4
153
+ # with:
154
+ # path: |
155
+ # **/node_modules
156
+ # key: modules-${{ github.sha }}
157
+ # - uses: actions/cache@v4
158
+ # with:
159
+ # key: build-${{ github.sha }}
160
+ # path: ${{ env.BUILD-CACHE-LIST }}
161
+ # - run: yarn types:check
162
162
163
163
e2e :
164
164
name : Cypress
0 commit comments