Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Node 18 on CI #20340

Merged
merged 3 commits into from
Jul 13, 2022
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 9 additions & 9 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ volumes:

steps:
- name: deps-frontend
image: node:16
image: node:18
pull: always
commands:
- make deps-frontend
Expand All @@ -34,7 +34,7 @@ steps:
path: /go

- name: lint-frontend
image: node:16
image: node:18
commands:
- make lint-frontend
depends_on: [deps-frontend]
Expand Down Expand Up @@ -82,7 +82,7 @@ steps:
path: /go

- name: checks-frontend
image: node:16
image: node:18
commands:
- make checks-frontend
depends_on: [deps-frontend]
Expand All @@ -97,13 +97,13 @@ steps:
path: /go

- name: test-frontend
image: node:16
image: node:18
commands:
- make test-frontend
depends_on: [lint-frontend]

- name: build-frontend
image: node:16
image: node:18
commands:
- make frontend
depends_on: [test-frontend]
Expand Down Expand Up @@ -634,7 +634,7 @@ steps:
- git fetch --tags --force

- name: deps-frontend
image: node:16
image: node:18
pull: always
commands:
- make deps-frontend
Expand All @@ -652,7 +652,7 @@ steps:
image: techknowlogick/xgo:go-1.18.x
pull: always
commands:
- curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs
- curl -sL https://deb.nodesource.com/setup_18.x | bash - && apt-get install -y nodejs
- export PATH=$PATH:$GOPATH/bin
- make release
environment:
Expand Down Expand Up @@ -753,7 +753,7 @@ steps:
- git fetch --tags --force

- name: deps-frontend
image: node:16
image: node:18
pull: always
commands:
- make deps-frontend
Expand All @@ -771,7 +771,7 @@ steps:
image: techknowlogick/xgo:go-1.18.x
pull: always
commands:
- curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs
- curl -sL https://deb.nodesource.com/setup_18.x | bash - && apt-get install -y nodejs
- export PATH=$PATH:$GOPATH/bin
- make release
environment:
Expand Down