-
-
Notifications
You must be signed in to change notification settings - Fork 184
94 lines (79 loc) · 2.37 KB
/
pull-request-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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# 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: API 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@v3
# only install dependencies
# https://github.com/cypress-io/github-action
- name: Install 📦
uses: cypress-io/github-action@v4
with:
runTests: false
integration-tests:
name: Run integration tests
needs: install
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
# Install cached NPM dependencies, run integration tests
- name: Cypress Integration Tests 🧪
uses: cypress-io/github-action@v4
with:
# use mock api
env: nock=true
spec: cypress/tests/integration/**/*.cy.js
browser: chrome
- name: Save screenshots
# step runs even if other steps fail
if: always()
uses: actions/upload-artifact@v3
with:
name: cypress-screenshots
path: cypress/screenshots
- name: Save videos
if: always()
uses: actions/upload-artifact@v3
with:
name: cypress-videos
path: cypress/videos
unit-tests:
name: Run unit tests
needs: install
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run Component tests 🧪
uses: cypress-io/github-action@v4
with:
command: npm run cypress:run:component
- name: Jest Unit Tests 🧪
run: npx jest --ci
- name: ESLint
run: npm run lint
- name: Save screenshots
# step runs even if other steps fail
if: always()
uses: actions/upload-artifact@v3
with:
name: cypress-screenshots-ct
path: cypress/screenshots
- name: Save videos
if: always()
uses: actions/upload-artifact@v3
with:
name: cypress-videos-ct
path: cypress/videos