Skip to content

ci: setup install and cypress ci (#237) #3

ci: setup install and cypress ci (#237)

ci: setup install and cypress ci (#237) #3

Workflow file for this run

# This workflow will do a clean install of node dependencies, 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: Wallet App CI for New Pull Requests
on:
pull_request:
paths-ignore:
- "**.md"
branches:
- "*"
jobs:
install:
name: Install dependencies
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- name: Checkout 🛎️
uses: actions/checkout@v4
# only install dependencies
# https://github.com/cypress-io/github-action
- name: Install 📦
uses: cypress-io/github-action@v6
with:
runTests: false
cypress-tests:
name: Run cypress unit tests
needs: install
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Component tests 🧪
uses: cypress-io/github-action@v6
with:
command: yarn run cypress-component-test