File tree 4 files changed +22
-8
lines changed
4 files changed +22
-8
lines changed Original file line number Diff line number Diff line change @@ -3,17 +3,21 @@ name: Code Quality
3
3
on :
4
4
push :
5
5
paths :
6
- - " .github/**"
7
- - " yarn.lock"
8
- - " **.js"
9
-
6
+ - ' .github/**'
7
+ - ' yarn.lock'
8
+ - ' **.js'
9
+ pull_request :
10
+ paths :
11
+ - ' .github/**'
12
+ - ' yarn.lock'
13
+ - ' **.js'
10
14
11
15
jobs :
12
16
test_and_lint :
13
17
runs-on : ubuntu-latest
14
18
strategy :
15
19
matrix :
16
- node : [ 10, 12, 14, 16 ]
20
+ node : [10, 12, 14, 16]
17
21
steps :
18
22
- uses : actions/setup-node@v2
19
23
with :
Original file line number Diff line number Diff line change 5
5
"license" : " MIT" ,
6
6
"private" : true ,
7
7
"scripts" : {
8
- "build" : " TS_NODE_PROJECT=\" webpack.tsconfig.json\" webpack"
8
+ "build" : " cross-env TS_NODE_PROJECT=\" webpack.tsconfig.json\" webpack"
9
9
},
10
10
"devDependencies" : {
11
11
"@types/node" : " ^16.9.6" ,
12
12
"@types/webpack" : " ^5.28.0" ,
13
+ "cross-env" : " ^7.0.3" ,
13
14
"css-loader" : " ^6.3.0" ,
14
15
"style-loader" : " ^3.3.0" ,
15
16
"ts-node" : " ^10.2.1" ,
Original file line number Diff line number Diff line change @@ -317,7 +317,14 @@ create-require@^1.1.0:
317
317
resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
318
318
integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
319
319
320
- cross-spawn@^7.0.3 :
320
+ cross-env@^7.0.3 :
321
+ version "7.0.3"
322
+ resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-7.0.3.tgz#865264b29677dc015ba8418918965dd232fc54cf"
323
+ integrity sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==
324
+ dependencies :
325
+ cross-spawn "^7.0.1"
326
+
327
+ cross-spawn@^7.0.1, cross-spawn@^7.0.3 :
321
328
version "7.0.3"
322
329
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
323
330
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
Original file line number Diff line number Diff line change 3
3
"version" : " 4.2.0" ,
4
4
"main" : " lib/index.js" ,
5
5
"types" : " lib/index.d.ts" ,
6
- "files" : [" lib" ],
6
+ "files" : [
7
+ " lib"
8
+ ],
7
9
"peerDependencies" : {
8
10
"loader-utils" : " ^2.0.0 || ^1.0.0" ,
9
11
"postcss" : " >=8.1.0" ,
You can’t perform that action at this time.
0 commit comments