[Web] Add warnings to all SDK example apps that would check if propper credentials have been set or it still has the defaults. #874
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
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Cypress tests | |
on: | |
push: | |
branches: [master, staging] | |
pull_request: | |
branches: [master, staging] | |
jobs: | |
build-and-test: | |
strategy: | |
matrix: | |
node-version: [12.x, 14.x, 16.x] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm install --legacy-peer-deps | |
- name: Run tests | |
run: npm test |