Skip to content

Commit 94c695b

Browse files
committed
test
1 parent 2c012e7 commit 94c695b

File tree

5 files changed

+8
-16
lines changed

5 files changed

+8
-16
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build
1+
name: 🚀 Build
22

33
on:
44
# Manual trigger build

.github/workflows/release-prod.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release (prod)
1+
name: Release (prod)
22

33
on:
44
push:

.github/workflows/release-stage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release (stage)
1+
name: 📖 Release (stage)
22

33
on:
44
push:

.github/workflows/tests-e2e-linux.yml

+3-11
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
fail-fast: false
2727
matrix:
2828
# Number of threads to run tests
29-
parallel: [0, 1, 2, 3]
30-
# parallel: [0]
29+
# parallel: [0, 1, 2, 3]
30+
parallel: [0]
3131

3232
steps:
3333
- uses: actions/checkout@v4
@@ -56,14 +56,6 @@ jobs:
5656
name: linux-build
5757
path: ./release
5858

59-
60-
# - run: node -v
61-
62-
# - name: Install dependencies for root package.js
63-
# run: yarn install --frozen-lockfile
64-
# - run: yarn download:backend
65-
# - run: yarn package:prod
66-
6759
- name: Setup e2e tests
6860
working-directory: ./tests/e2e
6961
run: |
@@ -75,7 +67,7 @@ jobs:
7567
- name: Generate short list of the test files
7668
working-directory: ./tests/e2e
7769
run: |
78-
testFiles=$(find dist -type f -name '*.e2e.js' | sort | awk "NR % 4 == ${{ matrix.parallel }}")
70+
testFiles=$(find dist -type f -name '*.e2e.js' | sort | awk "NR % 1 == ${{ matrix.parallel }}")
7971
echo $testFiles
8072
8173
# Multi-Line value

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Tests
1+
name: Tests
22

33
on:
44
push:
@@ -32,7 +32,7 @@ jobs:
3232
# needs: e2e-approve
3333
secrets: inherit
3434

35-
e2e-linux-tests:
35+
e2e-linux-tests-test:
3636
needs: build-linux
3737
uses: ./.github/workflows/tests-e2e-linux.yml
3838
secrets: inherit

0 commit comments

Comments
 (0)