-
Notifications
You must be signed in to change notification settings - Fork 2
56 lines (46 loc) · 1.81 KB
/
typescript-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: typescript-check
#on: [push]
on: [pull_request]
jobs:
cypress-run:
runs-on: ubuntu-latest
# Runs tests in parallel with matrix strategy https://docs.cypress.io/guides/guides/parallelization
# https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs
# Also see warning here https://github.com/cypress-io/github-action#parallel
strategy:
fail-fast: true # https://github.com/cypress-io/github-action/issues/48
matrix:
containers: [ 1 ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Extract Branch Name and Set Test Run Name
id: set-test-run-name
run: |
BRANCH_NAME=$(echo "${{ github.ref }}" | awk -F'/' '{print $3}')
echo "::set-output name=TEST_RUN_NAME::${{ github.workflow }}—$BRANCH_NAME"
- name: Install root dependencies
run: npm install
- name: Install typescript-test dependencies
run: npm install
working-directory: ./test/typescript-test
- name: Setup visualtest
run: npx visualtest-setup > visualtest-first-logs.txt
working-directory: ./test/typescript-test
- name: Setup visualtest for second time
run: npx visualtest-setup > visualtest-second-logs.txt
working-directory: ./test/typescript-test
- name: Verify npx visualtest-setup
run: npx jest
working-directory: ./test/typescript-test
- name: Cypress run
uses: cypress-io/github-action@v5
with:
quiet: true
working-directory: ./test/typescript-test
spec: cypress/e2e/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PROJECT_TOKEN: ${{ secrets.DEV_EXAMPLE_7 }}
TEST_RUN_NAME: ${{ steps.set-test-run-name.outputs.TEST_RUN_NAME }}
DEBUG: TRUE