File tree 5 files changed +44
-7
lines changed
5 files changed +44
-7
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ build :
7
+
8
+ runs-on : ubuntu-latest
9
+
10
+ steps :
11
+ - uses : actions/checkout@v1
12
+ - name : Run a one-line script
13
+ run : echo Hello, world!
14
+ - name : Run a multi-line script
15
+ run : |
16
+ echo Add other actions to build,
17
+ echo test, and deploy your project.
18
+ - name : npm audit action
19
+
20
+ with :
21
+ github_token : ${{ secrets.GITHUB_TOKEN }}
22
+ issue_assignees : deweydell
23
+ issue_labels : bug
Original file line number Diff line number Diff line change
1
+ # TODO (Nicola): Re-enable travis when we have tests to run
1
2
language : node_js
2
3
node_js :
3
4
- ' 10.15.3'
5
+ # script:
6
+ # the `audit-level` is at `moderate` to avoid https://www.npmjs.com/advisories/836, which has no resolution at time of writing
7
+ # consider swapping from `moderate` to `low` whenever this is possible and / reasonable (ex: when issue in the link above is fixed)
4
8
5
- script :
6
- # the `audit-level` is at `moderate` to avoid https://www.npmjs.com/advisories/836, which has no resolution at time of writing
7
- # consider swapping from `moderate` to `low` whenever this is possible and / reasonable (ex: when issue in the link above is fixed)
8
- - npm audit --audit-level=moderate
9
+ # - npm audit --audit-level=moderate
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " Lynn Cyrin" ,
3
+ "headshot" : " /images/lynn-cyrin.jpg" ,
4
+ "pronouns" : " they/them" ,
5
+ "roles" : [" Chapter Lead" ]
6
+ }
Original file line number Diff line number Diff line change @@ -223,18 +223,25 @@ collections:
223
223
name : ' pronouns'
224
224
widget : ' string'
225
225
required : false
226
- - label : ' Role '
227
- name : ' role '
226
+ - label : ' Roles '
227
+ name : ' roles '
228
228
widget : ' select'
229
229
multiple : true
230
230
options :
231
231
[
232
232
' Board Member' ,
233
- ' Chapter Organizer' ,
234
233
' Conference Organizer' ,
235
234
' Website Contributor' ,
235
+ ' Chapter Lead' ,
236
236
]
237
237
required : true
238
+ - label : ' Chapter'
239
+ name : ' chapter'
240
+ widget : ' relation'
241
+ collection : ' chapters'
242
+ required : false
243
+ searchFields : ['city']
244
+ valueField : ' city'
238
245
- label : ' Social Links'
239
246
name : ' links'
240
247
widget : ' list'
You can’t perform that action at this time.
0 commit comments