-
Notifications
You must be signed in to change notification settings - Fork 44
52 lines (42 loc) · 1.02 KB
/
build-and-test.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
name: Build & Test
on:
push:
branches:
- master
- release/**
pull_request:
branches:
- master
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '14'
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable --immutable-cache --check-cache
- name: Lint lib
run: yarn run lint
- name: Lint demo
run: yarn run lint:demo
- name: Unit tests
run: yarn run test
- name: Component tests
run: yarn run e2e:ci
- name: Upload test result
uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-results
path: |
./test-results/screenshots
./test-results/videos
- name: Build lib
run: yarn run build
- name: Build demo
run: yarn run build:demo