Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ec46549

Browse files
committedFeb 15, 2022
Merge branch 'develop' into 1.1
# Conflicts: # composer.json
2 parents 8cfd582 + 869a718 commit ec46549

File tree

188 files changed

+7998
-1777
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

188 files changed

+7998
-1777
lines changed
 

‎.github/ISSUE_TEMPLATE/1_BUG_REPORT.yaml

+1-5
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ body:
2626
label: PHP Version
2727
description: Please provide us the branch of PHP version. For example, for PHP version 7.4.9, select `7.4`, or for PHP version 8.0.1, select `8.0`.
2828
options:
29+
- 8.1
2930
- 8.0
3031
- 7.4
3132
- 7.3
@@ -71,8 +72,3 @@ body:
7172
attributes:
7273
label: Workaround
7374
description: If you have a workaround, please detail it here, for the benefit of other users who encounter the issue.
74-
- type: textarea
75-
id: other_details
76-
attributes:
77-
label: Any further details?
78-
description: If some other information is needed to describe this issue, please specify it here.

‎.github/workflows/code-quality.yaml

+21
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,24 @@ jobs:
3737
- name: Run code quality checks (on pull request)
3838
if: github.event_name == 'pull_request'
3939
run: ./.github/workflows/utilities/phpcs-pr ${{ github.base_ref }}
40+
codeQualityJS:
41+
runs-on: ubuntu-latest
42+
name: JavaScript
43+
steps:
44+
- name: Checkout changes
45+
uses: actions/checkout@v2
46+
with:
47+
fetch-depth: 0
48+
49+
- name: Install Node
50+
uses: actions/setup-node@v1
51+
with:
52+
node-version: 12
53+
54+
- name: Install Node dependencies
55+
working-directory: ./modules/system/assets/js/snowboard
56+
run: npm install
57+
58+
- name: Run code quality checks
59+
working-directory: ./modules/system/assets/js/snowboard
60+
run: npx eslint .

0 commit comments

Comments
 (0)
Please sign in to comment.