File tree Expand file tree Collapse file tree 1 file changed +18
-11
lines changed Expand file tree Collapse file tree 1 file changed +18
-11
lines changed Original file line number Diff line number Diff line change 6
6
- main
7
7
8
8
jobs :
9
- test :
9
+ test-code :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout Code
@@ -15,13 +15,20 @@ jobs:
15
15
16
16
with :
17
17
node-version : 18
18
- - name : Tests for auth-at-edge
19
- run : |
20
- cd assets/cf-mw-auth
21
- npm install
22
- npm test
23
- - name : Tests for url-rewriter
24
- run : |
25
- cd assets/cf-mw-urlrewrite
26
- npm install
27
- npm test
18
+
19
+ test-tf :
20
+ runs-on : ubuntu-latest
21
+ steps :
22
+ - name : Checkout Code
23
+ uses : actions/checkout@v3
24
+ - name : Setup Terraform
25
+ uses : hashicorp/setup-terraform@v3
26
+ - name : Terraform Setup
27
+ run : terraform init
28
+ - name : Terraform Validate
29
+ run : terraform validate
30
+ - name : Lint Terraform
31
+ uses : reviewdog/action-tflint@master
32
+ with :
33
+ github_token : ${{ secrets.github_token }}
34
+ filter_mode : " nofilter"
You can’t perform that action at this time.
0 commit comments