CSSTUDIO-2373: fix images not displayed in some cases #261
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: Test React Application | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
unit-tests: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Install Dependencies and Verify Can Be Built | |
run: ./scripts/install-dependencies-and-build.sh | |
- name: Run Unit tests | |
run: CI=true npm test | |
# - name: Run Unit and Integration Tests | |
# run: ./scripts/test.sh | |
# - name: Publish Test Results | |
# if: always() | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: test-results | |
# path: | | |
# cypress/screenshots | |
# cypress/videos | |
cypress-component-tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
name: Cypress component tests, node ${{ matrix.node-version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
# Install NPM dependencies, cache them correctly | |
# and run all Cypress tests | |
- name: Install dependencies and run tests | |
uses: cypress-io/github-action@v6 | |
with: | |
install-command: npm ci | |
start: npm start | |
component: true | |
browser: chrome | |
headed: false | |