-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (46 loc) · 1.27 KB
/
ci.yaml
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
# SPDX-FileCopyrightText: LoopBack Contributors
# SPDX-License-Identifier: MIT
name: CI
on:
push:
branches:
- main
pull_request: {}
jobs:
code-lint:
name: Code Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-node@v2
with:
node-version: 16
- name: Install dependencies
run: |
npm ci --ignore-scripts
npm run-script --ignore-scripts install
- name: Build project
run: npm run --ignore-scripts build
- name: Code lint check
run: |
npm run-script --ignore-scripts prettier:check
npm run-script --ignore-scripts validate
- name: REUSE compliance check
uses: fsfe/reuse-action@43bd643263f2a557a37e023e538ab9f83dce92a6 #v1.1.1
commit-lint:
name: Commit Lint
if: github.event.pull_request
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: 16
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Commit lint check
run: npx --no-install commitlint --from=origin/main --to=HEAD --verbose