Skip to content

Add flais sso back #102

Add flais sso back

Add flais sso back #102

Workflow file for this run

name: run tests
on:
push:
workflow_dispatch:
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache node_modules
uses: actions/cache@v4
id: node_modules
with:
path: ./node_modules
key: modules-${{ hashFiles('package-lock.json') }}
- uses: actions/setup-node@v4
if: steps.node_modules.outputs.cache-hit != 'true'
with:
node-version: "20.x"
cache: "npm"
- run: npm ci --ignore-scripts
if: steps.node_modules.outputs.cache-hit != 'true'
cypress-run:
needs: install
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cypress run
uses: cypress-io/github-action@v6
env:
CYPRESS_TESTS: true
with:
build: npm run build
start: npm start
browser: chrome