-
Notifications
You must be signed in to change notification settings - Fork 46
62 lines (52 loc) · 1.57 KB
/
github-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# 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
unit-tests:
name: Run unit tests
needs: install
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Jest unit tests 🧪
run: yarn workspace greenstand-wallet-app-api test:unit
integration-tests:
name: Run integration tests
needs: install
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Jest integration tests 🧪
run: yarn workspace greenstand-wallet-app-api int-test