-
Notifications
You must be signed in to change notification settings - Fork 12
104 lines (82 loc) · 2.28 KB
/
gating.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
95
96
97
98
99
100
101
102
103
104
---
name: Gating tests
on:
pull_request:
push:
branches: [main, devel]
env:
GITHUB_CI: true
jobs:
audit-and-build:
name: Audit and build
runs-on: ubuntu-latest
container:
image: fedora:latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
- name: Audit dependencies
run: npx audit-ci --config audit-ci.json --skip-dev
- name: Cache dependencies
id: cache-deps
uses: actions/cache@v3
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install project
run: npm install
- name: Prettier
run: npm run prettier
- name: Lint
run: npm run lint
- name: Build project
run: npm run build
- name: Upload dist folder
uses: actions/upload-artifact@v3
with:
name: freeipa-webui-build
path: dist/
integration-tests:
name: Integration tests
needs: audit-and-build
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: freeipa-webui-build
path: dist
- name: Cache Vagrant boxes
uses: actions/cache@v3
with:
path: ~/.vagrant.d/boxes
key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
restore-keys: |
${{ runner.os }}-vagrant-
- name: Run vagrant up
run: vagrant up --no-provision
- name: Run vagrant provision
run: vagrant provision
- name: Put IPA Server's IP to /etc/hosts
run: sudo echo "192.168.56.101 server.ipa.demo" | sudo tee -a /etc/hosts
- name: Run Cypress tests
uses: cypress-io/github-action@v5
with:
browser: firefox
- name: Upload cypress screenshots
uses: actions/upload-artifact@v2
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots
- name: Upload cypress videos
uses: actions/upload-artifact@v3
if: always()
with:
name: cypress-videos
path: cypress/videos