-
Notifications
You must be signed in to change notification settings - Fork 2
40 lines (32 loc) · 1.03 KB
/
linux_quick-test.yaml
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
name: linux-quick-check
on: [push]
#on: [pull_request]
jobs:
cypress-run:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- name: Checkout
uses: actions/checkout@v3
- 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 test dependencies
run: npm install
working-directory: ./test
- name: Cypress run
uses: cypress-io/github-action@v5
with:
quiet: true
working-directory: ./test
spec: cypress/e2e/test-spec/quick-test_*
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