fix(deps): update dependency @graasp/query-client to v2.2.2 #1477
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: Cypress CI | |
# Control when the action will run | |
on: | |
# Triggers the workflow on push events except for the main branch | |
push: | |
branches-ignore: | |
- main | |
concurrency: | |
group: cypress-${{ github.ref }} | |
cancel-in-progress: false | |
jobs: | |
cypress: | |
name: Cypress | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Yarn Install and Cache | |
uses: graasp/graasp-deploy/.github/actions/yarn-install-and-cache@v1 | |
with: | |
cypress: true | |
# type check | |
- name: Type-check code | |
run: tsc --noEmit | |
# use the Cypress GitHub Action to run Cypress tests within the chrome browser | |
- name: Cypress run | |
uses: cypress-io/github-action@v5 | |
with: | |
install: false | |
start: yarn dev | |
browser: chrome | |
quiet: true | |
config-file: cypress.config.ts | |
cache-key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
env: | |
VITE_PORT: ${{ vars.VITE_PORT }} | |
VITE_VERSION: ${{ vars.VITE_VERSION }} | |
VITE_GRAASP_DOMAIN: ${{ vars.VITE_GRAASP_DOMAIN }} | |
VITE_GRAASP_API_HOST: ${{ vars.VITE_GRAASP_API_HOST }} | |
VITE_GRAASP_AUTH_HOST: ${{ vars.VITE_GRAASP_AUTH_HOST }} | |
VITE_GRAASP_BUILDER_HOST: ${{ vars.VITE_GRAASP_BUILDER_HOST }} | |
VITE_SHOW_NOTIFICATIONS: ${{ vars.VITE_SHOW_NOTIFICATIONS }} | |
VITE_RECAPTCHA_SITE_KEY: ${{ secrets.VITE_RECAPTCHA_SITE_KEY }} | |
# after the test run completes | |
# store any screenshots | |
# NOTE: screenshots will be generated only if E2E test failed | |
# thus we store screenshots only on failures | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: cypress/screenshots | |
- name: coverage report | |
run: npx nyc report --reporter=text-summary |