-
Notifications
You must be signed in to change notification settings - Fork 78
36 lines (33 loc) · 934 Bytes
/
ci.ui.yaml
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
name: Continuous Integration - UI
on:
pull_request:
types: [opened, synchronize]
paths:
- 'projects/ui/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: UI Tests
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Cache Node Modules
id: node-modules-cache
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
if: steps.node-modules-cache.outputs.cache-hit != 'true'
run: yarn install --immutable
- name: Build
run: yarn workspace ui build
- name: Unit Tests
run: yarn ui:test
- name: Browser Tests
uses: cypress-io/github-action@v4
with:
start: yarn ui:start
command: yarn test:browser