chore(*): Update dependency NSubstitute to v5 #2495
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test E2E on pull request | |
on: pull_request | |
jobs: | |
e2e-pr: | |
name: E2E on pull request | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- run: | | |
cd e2e | |
echo ::group::build | |
make server compose-args="--detach" | |
make wait-server | |
echo ::endgroup::build | |
make ci-no-record | |
make run run-cmd="npm run lint" make-args="no-interactive no-tty" | |
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3 | |
if: failure() | |
with: | |
name: e2e-screenshots | |
path: e2e/cypress/screenshots | |
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3 | |
if: failure() | |
with: | |
name: e2e-snapshots | |
path: e2e/cypress/snapshots | |
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3 | |
if: failure() | |
with: | |
name: e2e-videos | |
path: e2e/cypress/videos |