-
-
Notifications
You must be signed in to change notification settings - Fork 293
57 lines (51 loc) · 1.3 KB
/
pr-validation.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
# Code validation job, executed on pull request
# Builds the app, and runs lint, unit and integration tests
name: PR Validation
on:
pull_request:
branches: [main]
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- 'app/common/public/locales/**'
- 'docs/**'
- 'sample-session-files/**'
- '.gitignore'
- 'LICENSE'
- 'README.md'
- 'renovate.json'
jobs:
build:
name: Build & Test
strategy:
matrix:
image: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.image }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js LTS
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build --if-present
- name: Test
run: npm run test:unit && npm run test:integration
lint:
name: Lint & Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js LTS
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run test:lint
- name: Format
run: npm run test:format