Skip to content

Commit 1c62eec

Browse files
committedJun 10, 2024
Merge remote-tracking branch 'upstream/master'

File tree

355 files changed

+10932
-4182
lines changed

Some content is hidden

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

355 files changed

+10932
-4182
lines changed
 

‎.github/ISSUE_TEMPLATE/bug_report.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ body:
4747
label: Log details
4848
render: text
4949
description: >
50-
Show evcc log output by running with <code>evcc --log debug</code>. The evcc service **MUST** be stopped before running this command.
50+
Show evcc log output of the issue, see https://docs.evcc.io/en/docs/faq#how-do-i-create-a-log-file-for-error-analysis for instructions.
5151
5252
- type: dropdown
5353
validations:

‎.github/workflows/default.yml

+3-8
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
- run: mkdir dist && touch dist/empty
135135

136136
- name: Lint
137-
uses: golangci/golangci-lint-action@v5
137+
uses: golangci/golangci-lint-action@v6
138138
with:
139139
version: latest
140140
args: --out-format=colored-line-number --timeout 5m
@@ -177,11 +177,6 @@ jobs:
177177
integration:
178178
name: Integration
179179
runs-on: ubuntu-latest
180-
strategy:
181-
fail-fast: false
182-
matrix:
183-
shardIndex: [1, 2]
184-
shardTotal: [2]
185180

186181
steps:
187182
- uses: actions/checkout@v4
@@ -224,7 +219,7 @@ jobs:
224219
run: npx playwright install --with-deps chromium
225220

226221
- name: Run tests
227-
run: npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
222+
run: npx playwright test
228223

229224
# - name: Run tests
230225
# uses: docker://mcr.microsoft.com/playwright:v1.34.3-jammy
@@ -234,6 +229,6 @@ jobs:
234229
- uses: actions/upload-artifact@v4
235230
if: ${{ !cancelled() }}
236231
with:
237-
name: playwright-report-${{ matrix.shardIndex }}
232+
name: playwright-report
238233
path: playwright-report/
239234
retention-days: 14

0 commit comments

Comments
 (0)
Please sign in to comment.