Minor config updates
Dieser Commit ist enthalten in:
Ursprung
39defec897
Commit
8fd07322d0
3 geänderte Dateien mit 1650 neuen und 8 gelöschten Zeilen
12
.github/workflows/plugin-tests.yml
gevendort
12
.github/workflows/plugin-tests.yml
gevendort
|
@ -56,20 +56,16 @@ jobs:
|
|||
if_true: "stable"
|
||||
if_false: "tests-passed"
|
||||
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
repository: discourse/discourse
|
||||
ref: ${{ steps.discourse_branch.outputs.value }}
|
||||
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
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: plugins/${{ steps.repo-name.outputs.value }}
|
||||
path: plugins/${{ github.event.repository.name }}
|
||||
ref: "${{ github.base_ref }}"
|
||||
fetch-depth: 1
|
||||
|
||||
|
@ -139,5 +135,5 @@ jobs:
|
|||
|
||||
- name: Plugin QUnit
|
||||
if: matrix.build_type == 'frontend'
|
||||
run: bundle exec rake plugin:qunit['${{ steps.repo-name.outputs.value }}','1200000']
|
||||
timeout-minutes: 30
|
||||
run: QUNIT_SKIP_CORE=1 LOAD_PLUGINS=1 QUNIT_EMBER_CLI=0 bin/rake qunit:test['1200000','/w/qunit']
|
||||
timeout-minutes: 10
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
// discourse-skip-module
|
||||
/*global document, Logster, QUnit */
|
||||
|
||||
document.addEventListener("DOMContentLoaded", function () {
|
||||
document.body.insertAdjacentHTML(
|
||||
|
@ -15,3 +16,9 @@ Object.keys(requirejs.entries).forEach(function (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