-
Notifications
You must be signed in to change notification settings - Fork 594
58 lines (47 loc) · 1.22 KB
/
ci-validate-pr.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
name: Validate PRs
on:
workflow_dispatch:
push:
branches:
- master
- releases/*
pull_request:
branches:
- master
- releases/*
- features/*
jobs:
build_linux:
runs-on: ubuntu-latest
env:
PLAYWRIGHT_BROWSERS_PATH: 0
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cache multiple paths
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install package dependencies
run: npm ci
- name: Check for the presence of changed files inside ./change
run: npm run checkchange
- name: Testing Prettier format
run: npm run format:check
- name: Build workspaces
run: npm run build
- name: Install playwright dependencies and browsers
run: |
npx playwright install
- name: Testing unit tests
run: npm run test
- name: Testing final validation
run: npm run test:validation