We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 654e25c commit dba6ac8Copy full SHA for dba6ac8
.github/workflows/analyze.yml
@@ -0,0 +1,36 @@
1
+name: Analyze
2
+
3
+on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
8
9
+jobs:
10
+ lint-app:
11
+ runs-on: ubuntu-20.04
12
+ name: Lint app
13
+ steps:
14
+ - uses: actions/checkout@v2.3.4
15
+ - name: Set up Node.js
16
+ uses: actions/setup-node@v2.1.4
17
+ with:
18
+ node-version: 14.15.4
19
+ - name: Install NPM Packages
20
+ run: npm ci
21
+ - name: Lint
22
+ run: npm run lint
23
24
+ lint-dockerfile:
25
26
+ name: Lint dockerfile
27
28
29
+ - name: Lint app dockerfile
30
+ uses: brpaz/hadolint-action@v1.3.1
31
32
+ dockerfile: Dockerfile
33
+ - name: Lint staticman dockerfile
34
35
36
+ dockerfile: staticman/Dockerfile
0 commit comments