Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 11:52:54 +01:00
Minor config updates
Dieser Commit ist enthalten in:
Ursprung
84d21f78e5
Commit
305f94e9d9
3 geänderte Dateien mit 1649 neuen und 7 gelöschten Zeilen
10
.github/workflows/plugin-tests.yml
gevendort
10
.github/workflows/plugin-tests.yml
gevendort
|
@ -41,20 +41,16 @@ jobs:
|
||||||
if_true: "stable"
|
if_true: "stable"
|
||||||
if_false: "tests-passed"
|
if_false: "tests-passed"
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: discourse/discourse
|
repository: discourse/discourse
|
||||||
ref: ${{ steps.discourse_branch.outputs.value }}
|
ref: ${{ steps.discourse_branch.outputs.value }}
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
|
|
||||||
- name: Fetch Repo Name
|
|
||||||
id: repo-name
|
|
||||||
run: echo "::set-output name=value::$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')"
|
|
||||||
|
|
||||||
- name: Install plugin
|
- name: Install plugin
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
path: plugins/${{ steps.repo-name.outputs.value }}
|
path: plugins/${{ github.event.repository.name }}
|
||||||
ref: "${{ github.base_ref }}"
|
ref: "${{ github.base_ref }}"
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
|
|
||||||
|
@ -154,4 +150,4 @@ jobs:
|
||||||
- name: Wizard QUnit
|
- name: Wizard QUnit
|
||||||
if: matrix.build_type == 'frontend'
|
if: matrix.build_type == 'frontend'
|
||||||
run: QUNIT_SKIP_CORE=1 LOAD_PLUGINS=1 QUNIT_EMBER_CLI=0 bin/rake qunit:test['1200000','/w/qunit']
|
run: QUNIT_SKIP_CORE=1 LOAD_PLUGINS=1 QUNIT_EMBER_CLI=0 bin/rake qunit:test['1200000','/w/qunit']
|
||||||
timeout-minutes: 30
|
timeout-minutes: 10
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
// discourse-skip-module
|
// discourse-skip-module
|
||||||
|
/*global document, Logster, QUnit */
|
||||||
|
|
||||||
if (window.location.pathname.indexOf("/w/") > -1 && Ember.testing) {
|
if (window.location.pathname.indexOf("/w/") > -1 && Ember.testing) {
|
||||||
document.addEventListener("DOMContentLoaded", function () {
|
document.addEventListener("DOMContentLoaded", function () {
|
||||||
|
@ -16,4 +17,10 @@ if (window.location.pathname.indexOf("/w/") > -1 && Ember.testing) {
|
||||||
requirejs(entry);
|
requirejs(entry);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (window.Logster) {
|
||||||
|
Logster.enabled = false;
|
||||||
|
} else {
|
||||||
|
window.Logster = { enabled: false };
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
1639
yarn.lock
Normale Datei
1639
yarn.lock
Normale Datei
Datei-Diff unterdrückt, da er zu groß ist
Diff laden
Laden …
In neuem Issue referenzieren