File tree Expand file tree Collapse file tree 2 files changed +30
-2
lines changed Expand file tree Collapse file tree 2 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 30
30
- name : build
31
31
env :
32
32
NODE_OPTIONS : " --max_old_space_size=4096"
33
- run : npm -w @index-san/core run build
33
+ run : npm -w @index-san/core run build
34
+
35
+ app :
36
+ name : app
37
+ runs-on : windows-2022
38
+ steps :
39
+ - uses : actions/checkout@v3
40
+
41
+ - uses : actions/setup-node@v3
42
+ with :
43
+ node-version : 20.4.0
44
+ cache : ' npm'
45
+
46
+ - name : install
47
+ run : npm install
48
+
49
+ - name : lint
50
+ run : npm -w @index-san/app run lint
51
+
52
+ - name : test
53
+ run : npm -w @index-san/app run test
54
+
55
+ - name : build
56
+ run : npm -w @index-san/app run build
Original file line number Diff line number Diff line change 11
11
"sourceType" : " module"
12
12
},
13
13
"rules" : {
14
- "@typescript-eslint/no-var-requires" : " off"
14
+ "@typescript-eslint/no-var-requires" : " off" ,
15
+ "vue/multi-word-component-names" : " off" ,
16
+ "vue/no-setup-props-destructure" : " off" ,
17
+ "vue/one-component-per-file" : " off" ,
18
+ "vue/no-v-html" : " off" ,
19
+ "vue/no-v-text-v-html-on-component" : " off"
15
20
}
16
21
}
You can’t perform that action at this time.
0 commit comments