-
Notifications
You must be signed in to change notification settings - Fork 39
66 lines (53 loc) · 1.45 KB
/
web-app-quality.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
58
59
60
61
62
63
64
65
name: Web App Quality
on:
pull_request:
branches: [master]
paths:
- 'client/web/emberclear/**'
- 'client/web/package.json'
env:
root: client/web/
app: emberclear/
full: client/web/emberclear/
jobs:
security:
name: Dependency Security
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- name: Install
run: volta install node && volta install snyk
- name: Snyk
working-directory: ${{ env.root }}
if: github.event == 'pull_request'
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
run: snyk test --severity-threshold=high
lint:
name: "Lint JS/TS & Type Checking"
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- name: Install
working-directory: ${{ env.root }}
run: yarn install
- name: "JS/TS"
working-directory: ${{ env.root }}
run: yarn eslint ${{ env.app }} --ext js,ts
- name: "Templates"
working-directory: ${{ env.full }}
run: yarn ember-template-lint .
- name: "Styles"
working-directory: ${{ env.root }}
run: yarn stylelint ${{ env.app }}**/*.css
- name: "Translations"
working-directory: ${{ env.full }}
run: yarn lint:i18n
continue-on-error: true
- name: 'Type Correctness'
working-directory: ${{ env.full }}
run: yarn tsc --build