generated from svierk/sfdx-project-starter-kit
-
-
Notifications
You must be signed in to change notification settings - Fork 5
55 lines (52 loc) · 1.41 KB
/
ci.yml
File metadata and controls
55 lines (52 loc) · 1.41 KB
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
name: validation
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
validation:
name: Code Quality
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
with:
fetch-depth: 0
- name: Select Node Version
uses: svierk/get-node-version@main
- name: Install Dependencies
run: npm ci
- name: Check Prettier
run: npm run prettier
- name: Check ESLint
run: npm run lint:sonar
- name: LWC Unit Tests
run: npm run test:unit:coverage
tests:
name: E2E UI Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
with:
fetch-depth: 0
- name: Select Node Version
uses: svierk/get-node-version@main
- name: Install Dependencies
run: npm ci
- name: Install SF CLI
uses: svierk/sfdx-cli-setup@main
- name: Salesforce Org Login
uses: svierk/sfdx-login@main
with:
client-id: ${{ secrets.SFDX_CONSUMER_KEY }}
jwt-secret-key: ${{ secrets.SFDX_JWT_SECRET_KEY }}
username: ${{ secrets.SFDX_USERNAME }}
- name: Compile UTAM Page Objects
run: npm run test:ui:compile
- name: Prepare Login Details
run: npm run test:ui:generate:login
- name: UTAM E2E Tests
run: npm run test:ui