-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (42 loc) · 1.32 KB
/
build.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
name: CI
on:
push:
branches:
- 'main'
pull_request:
jobs:
license-headers:
name: Check licenses headers
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
- name: Checkout sources
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Check License Header (Check Mode)
uses: apache/skywalking-eyes/header@v0.5.0
with:
config: .github/config/.licenserc.yaml
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
with:
fetch-depth: 0
persist-credentials: false
- name: FixForNodeWarnings
run: |
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
- name: Build
run: |
npm install
npm run licenses-check
npm run lint
npm run build
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@v3.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}