updating deps #393
Workflow file for this run
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: linux-quick-check | |
on: [push] | |
#on: [pull_request] | |
jobs: | |
cypress-run: | |
runs-on: self-hosted | |
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 test dependencies | |
run: npm install | |
working-directory: ./test | |
- name: Cypress run | |
uses: cypress-io/github-action@v6 | |
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 }} | |
SBVT_SCM_BRANCH: ${{ github.head_ref || github.ref_name }} | |
SBVT_SCM_COMMIT_ID: ${{ github.sha }} | |
DEBUG: TRUE | |