Skip to content

Commit

Permalink
chore: another experiment
Browse files Browse the repository at this point in the history
  • Loading branch information
nsbarsukov committed Oct 3, 2024
1 parent 6e5afd7 commit 922e847
Showing 1 changed file with 19 additions and 12 deletions.
31 changes: 19 additions & 12 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ env:
CYPRESS_BASELINE_REPO: 'baseline'
CYPRESS_RESULTS_FOLDER: 'projects/demo-cypress/tests-results'
CYPRESS_BASELINE_SNAPSHOTS: 'projects/demo-cypress/tests-results/snapshots/baseline'
CYPRESS_BASELINE_SNAPSHOTS_KEY: 'cy_baseline_${{ github.event.pull_request.head.sha }}'

jobs:
build-demo:
Expand Down Expand Up @@ -41,24 +42,30 @@ jobs:
- uses: taiga-family/ci/actions/setup/node@v1.93.0

- name: Run tests for baseline state
run: |
npx nx component-test demo-cypress
rm -r node_modules
find . -mindepth 1 -type f -not -path "**/demo-cypress/**/snapshots/baseline/**" -delete
find . -type d -empty -delete
cp -r ${{env.CYPRESS_BASELINE_SNAPSHOTS }}/. temp-storage
tree .
run: npx nx component-test demo-cypress

- uses: actions/checkout@v4.2.0
- name: Save Cypress Baseline Snapshots
uses: actions/upload-artifact@v4.4.0
with:
clean: false
path: ${{env.CYPRESS_BASELINE_SNAPSHOTS}}
name: ${{env.CYPRESS_BASELINE_SNAPSHOTS_KEY}}
if-no-files-found: ignore
compression-level: 0
retention-days: 1

- uses: actions/checkout@v4.2.0
- uses: taiga-family/ci/actions/setup/variables@v1.93.0
- uses: taiga-family/ci/actions/setup/node@v1.93.0

- name: Download Cypress Baseline Snapshots
uses: actions/download-artifact@v4.1.8
with:
path: ${{env.CYPRESS_BASELINE_SNAPSHOTS}}
pattern: ${{ env.CYPRESS_BASELINE_SNAPSHOTS_KEY }}
merge-multiple: true

- name: Run tests for current state
run: |
tree . -L 1
npx nx component-test demo-cypress
run: npx nx component-test demo-cypress

- name: Prepare diff screenshots
run: |
Expand Down

0 comments on commit 922e847

Please sign in to comment.