Skip to content

Bump qrcode.react from 3.1.0 to 4.1.0 #1422

Bump qrcode.react from 3.1.0 to 4.1.0

Bump qrcode.react from 3.1.0 to 4.1.0 #1422

Workflow file for this run

name: Cypress Integration Tests
on:
pull_request:
types: [opened, ready_for_review, reopened, synchronize]
jobs:
integration-test:
name: Integration Test
timeout-minutes: 20
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install Dependencies
uses: bahmutov/npm-install@v1
env:
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}
- name: Create .env
run: touch .env
- name: Get Secrets From Vault
run: npm run vault:local
env:
VAULT_ROLE_ID: ${{ secrets.VAULT_ROLE_ID }}
VAULT_SECRET_ID: ${{ secrets.VAULT_SECRET_ID }}
- name: Cypress Integration Test
uses: cypress-io/github-action@v6
with:
# we have already installed all dependencies above
install: false
build: npm run build-test
start: npm run serve-test
wait-on: 'http://localhost:9000'
wait-on-timeout: 240
browser: chrome
headed: false
config: video=false
- name: Integration Test Screenshot Artifacts
uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-screenshots
path: ./cypress/screenshots
- name: Integration Test Video Artifacts
uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-videos
path: ./cypress/videos
- name: NPM Failure Logs
uses: actions/upload-artifact@v3
if: failure()
with:
name: npm-logs
path: ~/.npm/_logs