forked from TheThingsNetwork/lorawan-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
117 lines (114 loc) · 3.23 KB
/
js.yml
File metadata and controls
117 lines (114 loc) · 3.23 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
name: JS Code
on:
pull_request:
paths:
- 'config/**'
- '!config/stack/ttn-lw-stack.yml'
- 'Makefile'
- 'package.json'
- 'pkg/webui/**'
- '!pkg/webui/**.go'
- 'sdk/js/**'
- 'tools/**'
- 'yarn.lock'
jobs:
quality:
name: Code Quality
runs-on: ubuntu-18.04
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v2-beta
with:
node-version: '~14'
- name: Get Yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Initialize Yarn module cache
uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '~1.14'
- name: Initialize Go module cache
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Download Go tool dependencies
run: |
cd tools
go mod download
- name: Initialize tool binary cache
uses: actions/cache@v2
with:
path: tools/bin
key: ${{ runner.os }}-tools-${{ hashFiles('tools/**') }}
- name: Make Mage
run: make tools/bin/mage
- name: Install JS SDK dependencies
run: tools/bin/mage jsSDK:deps
- name: Build JS SDK
run: tools/bin/mage jsSDK:clean jsSDK:build
- name: Generate JS translations
run: tools/bin/mage js:translations js:backendTranslations
- name: Lint JS SDK code
run: tools/bin/mage jsSDK:lint
- name: Lint frontend code
run: tools/bin/mage js:lint
- name: Check for diff
run: tools/bin/mage git:diff
test:
name: Tests
runs-on: ubuntu-18.04
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v2-beta
with:
node-version: '14'
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '~1.14'
- name: Initialize Go module cache
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Download Go tool dependencies
run: |
cd tools
go mod download
- name: Initialize tool binary cache
uses: actions/cache@v2
with:
path: tools/bin
key: ${{ runner.os }}-tools-${{ hashFiles('tools/**') }}
- name: Make Mage
run: make tools/bin/mage
- name: Install JS SDK dependencies
run: tools/bin/mage jsSDK:deps
- name: Build JS SDK
run: tools/bin/mage jsSDK:clean jsSDK:build
- name: Install JS dependencies
run: tools/bin/mage js:deps
- name: Build frontend
run: tools/bin/mage js:clean js:build
- name: Test JS SDK code
run: tools/bin/mage jsSDK:test
- name: Test frontend code
run: tools/bin/mage js:test
- name: Check for diff
run: tools/bin/mage git:diff