Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
{
"extends": "wikimedia",
"env": {
"browser": true,
"es6": true
},
"extends": [
"wikimedia/client",
"wikimedia/jquery"
],
"globals": {
"$": false,
"jQuery": false,
"nunjucks": false,
"CodeMirror": false,
"vars": true
Expand All @@ -16,6 +13,8 @@
"no-console": 0,
"no-alert": 0,
"vars-on-top": 0,
"no-use-before-define": 0
"no-use-before-define": 0,
"no-jquery/no-done-fail": 0,
"no-jquery/no-global-selector": "warn"
}
}
8 changes: 8 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,11 @@ jobs:
- name: run tox container
run: |
docker run tox:01
js:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
4 changes: 2 additions & 2 deletions helm-quarry/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
web:
repository: 'quay.io/wikimedia-quarry/quarry'
tag: pr-88 # web tag managed by github actions
tag: pr-89 # web tag managed by github actions
resources:
requests:
memory: "300Mi"
Expand All @@ -11,7 +11,7 @@ web:

worker:
repository: 'quay.io/wikimedia-quarry/quarry'
tag: pr-88 # worker tag managed by github actions
tag: pr-89 # worker tag managed by github actions
resources:
requests:
memory: "400Mi"
Expand Down
Loading