Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
zalenskiSofteq committed Oct 29, 2024
1 parent 2c012e7 commit 94c695b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: 🚀 Build

on:
# Manual trigger build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-prod.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release (prod)
name: Release (prod)

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-stage.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release (stage)
name: 📖 Release (stage)

on:
push:
Expand Down
14 changes: 3 additions & 11 deletions .github/workflows/tests-e2e-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
fail-fast: false
matrix:
# Number of threads to run tests
parallel: [0, 1, 2, 3]
# parallel: [0]
# parallel: [0, 1, 2, 3]
parallel: [0]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -56,14 +56,6 @@ jobs:
name: linux-build
path: ./release


# - run: node -v

# - name: Install dependencies for root package.js
# run: yarn install --frozen-lockfile
# - run: yarn download:backend
# - run: yarn package:prod

- name: Setup e2e tests
working-directory: ./tests/e2e
run: |
Expand All @@ -75,7 +67,7 @@ jobs:
- name: Generate short list of the test files
working-directory: ./tests/e2e
run: |
testFiles=$(find dist -type f -name '*.e2e.js' | sort | awk "NR % 4 == ${{ matrix.parallel }}")
testFiles=$(find dist -type f -name '*.e2e.js' | sort | awk "NR % 1 == ${{ matrix.parallel }}")
echo $testFiles
# Multi-Line value
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tests
name: Tests

on:
push:
Expand Down Expand Up @@ -32,7 +32,7 @@ jobs:
# needs: e2e-approve
secrets: inherit

e2e-linux-tests:
e2e-linux-tests-test:
needs: build-linux
uses: ./.github/workflows/tests-e2e-linux.yml
secrets: inherit

0 comments on commit 94c695b

Please sign in to comment.