This repository was archived by the owner on Jul 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
82 lines (57 loc) · 1.63 KB
/
ci-weekly.yml
File metadata and controls
82 lines (57 loc) · 1.63 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: CI - FAST Validation
on:
schedule:
- cron: 0 7 * * 3
jobs:
build_windows:
name: Validate on Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2.1.0
with:
node-version: '10'
- name: Install Lerna
run: npm i -g lerna
- name: Install package dependencies / prepare workspaces
env:
CHILD_CONCURRENCY: 1
run: |
yarn install --frozen-lockfile
- name: Ensure Prettier formatting
run: lerna run prettier:diff
- name: Execute unit tests
run: lerna run test --stream
build_macos:
name: Validate on MacOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2.1.0
with:
node-version: '10'
- name: Install Lerna
run: sudo yarn global add lerna
- name: Install package dependencies / prepare workspaces
run: yarn install --frozen-lockfile
- name: Ensure Prettier formatting
run: lerna run prettier:diff
- name: Execute unit tests
run: lerna run test --stream
code_scan:
name: Validate Security
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
- name: Autobuild
uses: github/codeql-action/autobuild@v1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1