File tree 6 files changed +29
-9
lines changed
6 files changed +29
-9
lines changed Original file line number Diff line number Diff line change 33
33
- git fetch --tags --force
34
34
35
35
- name : deps-frontend
36
- image : node:18
36
+ image : node:20
37
37
pull : always
38
38
commands :
39
39
- make deps-frontend
51
51
image : techknowlogick/xgo:go-1.20.x
52
52
pull : always
53
53
commands :
54
- # Upgrade to node 18 once https://github.com/techknowlogick/xgo/issues/163 is resolved
54
+ # Upgrade to node 20 once https://github.com/techknowlogick/xgo/issues/163 is resolved
55
55
- curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get -qqy install nodejs
56
56
- export PATH=$PATH:$GOPATH/bin
57
57
- make release
@@ -161,7 +161,7 @@ steps:
161
161
- git fetch --tags --force
162
162
163
163
- name : deps-frontend
164
- image : node:18
164
+ image : node:20
165
165
pull : always
166
166
commands :
167
167
- make deps-frontend
@@ -179,7 +179,7 @@ steps:
179
179
image : techknowlogick/xgo:go-1.20.x
180
180
pull : always
181
181
commands :
182
- # Upgrade to node 18 once https://github.com/techknowlogick/xgo/issues/163 is resolved
182
+ # Upgrade to node 20 once https://github.com/techknowlogick/xgo/issues/163 is resolved
183
183
- curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get -qqy install nodejs
184
184
- export PATH=$PATH:$GOPATH/bin
185
185
- make release
Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ name: "Pull: Compliance Tests"
2
2
3
3
on : [pull_request]
4
4
5
+ concurrency :
6
+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
7
+ cancel-in-progress : true
8
+
5
9
jobs :
6
10
lint_basic :
7
11
runs-on : ubuntu-latest
79
83
- name : setup node
80
84
uses : actions/setup-node@v3
81
85
with :
82
- node-version : 18
86
+ node-version : 20
83
87
- name : deps-frontend
84
88
run : make deps-frontend
85
89
- name : lint frontend
@@ -100,7 +104,7 @@ jobs:
100
104
- name : setup node
101
105
uses : actions/setup-node@v3
102
106
with :
103
- node-version : 18
107
+ node-version : 20
104
108
- name : deps-backend
105
109
run : make deps-backend deps-tools
106
110
- name : deps-frontend
Original file line number Diff line number Diff line change 6
6
- " docs/**"
7
7
- " *.md"
8
8
9
+ concurrency :
10
+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
11
+ cancel-in-progress : true
12
+
9
13
jobs :
10
14
compliance-docs :
11
15
runs-on : ubuntu-latest
12
16
steps :
13
17
- name : checkout
14
18
uses : actions/checkout@v3
15
19
- name : setup node
16
- uses : actions/setup-node@v2
20
+ uses : actions/setup-node@v3
17
21
with :
18
- node-version : 18
22
+ node-version : 20
19
23
- name : install dependencies
20
24
run : make deps-frontend
21
25
- name : lint markdown
Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ name: "Pull: Database Tests"
2
2
3
3
on : [pull_request]
4
4
5
+ concurrency :
6
+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
7
+ cancel-in-progress : true
8
+
5
9
jobs :
6
10
# PostgreSQL Tests
7
11
db_pgsql_test :
Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ name: "Pull: Docker Dry Run"
2
2
3
3
on : [pull_request]
4
4
5
+ concurrency :
6
+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
7
+ cancel-in-progress : true
8
+
5
9
jobs :
6
10
docker_dryrun :
7
11
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ name: "Pull: E2E Tests"
2
2
3
3
on : [pull_request]
4
4
5
+ concurrency :
6
+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
7
+ cancel-in-progress : true
8
+
5
9
jobs :
6
10
e2e_tests :
7
11
runs-on : ubuntu-latest
15
19
- name : setup node
16
20
uses : actions/setup-node@v3
17
21
with :
18
- node-version : 18
22
+ node-version : 20
19
23
- name : build
20
24
run : make deps-frontend frontend deps-backend
21
25
- name : Install playwright browsers
You can’t perform that action at this time.
0 commit comments