ci: setup install and cypress ci (#237) #3
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, 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 |