Skip to content

Commit e3b6526

Browse files
authored
Use node:16.5 for frontend instead of node:16 (#16591)
* Disable frontend testing Jest does not appear to work on the latest node 16.6.0 and fails with an inscrutable message. I have been unable to work out what the problem is. This PR simply disables the test-frontend part in the makefile. Another alternative would be to drop node to node 14 - which is the LTS for node. Signed-off-by: Andrew Thornton <[email protected]> * actually just tell on 16.5 instead Signed-off-by: Andrew Thornton <[email protected]> * Use node 16.5 instead of 16 Signed-off-by: Andrew Thornton <[email protected]>
1 parent b73e421 commit e3b6526

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.drone.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ trigger:
1515
steps:
1616
- name: deps-frontend
1717
pull: always
18-
image: node:16
18+
image: node:16.5
1919
commands:
2020
- make node_modules
2121

2222
- name: lint-frontend
23-
image: node:16
23+
image: node:16.5
2424
commands:
2525
- make lint-frontend
2626
depends_on: [deps-frontend]
@@ -58,7 +58,7 @@ steps:
5858
TAGS: bindata gogit sqlite sqlite_unlock_notify
5959

6060
- name: checks-frontend
61-
image: node:16
61+
image: node:16.5
6262
commands:
6363
- make checks-frontend
6464
depends_on: [deps-frontend]
@@ -71,13 +71,13 @@ steps:
7171
depends_on: [lint-backend]
7272

7373
- name: test-frontend
74-
image: node:16
74+
image: node:16.5
7575
commands:
7676
- make test-frontend
7777
depends_on: [lint-frontend]
7878

7979
- name: build-frontend
80-
image: node:16
80+
image: node:16.5
8181
commands:
8282
- make frontend
8383
depends_on: [test-frontend]

0 commit comments

Comments
 (0)