-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (33 loc) · 1.01 KB
/
pull-requests.yml
File metadata and controls
43 lines (33 loc) · 1.01 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
name: Lint, Test and build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: npm lint
run: npm run lint
- name: npm test
run: npm run test
- name: Install libgbm1 (Linux)
run: "sudo apt-get install libgbm1"
- name: npm e2e (Linux)
run: "xvfb-run --auto-servernum --server-args='-screen 0, 1600x900x24' npm run e2e"
- name: npm build
run: npm run build