Skip to content

Commit

Permalink
chore: Drop node versions lower than v12
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Drop node versions lower than v12
  • Loading branch information
marcbachmann committed Dec 7, 2021
1 parent 89b0063 commit 7d25ad1
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,23 @@ steps:
from_secret: GH_TOKEN

- name: install
image: node:8-alpine
image: node:12-alpine
commands: ["npm install"]

- name: npm-ls
image: node:8-alpine
image: node:12-alpine
commands: ["npm ls"]

- name: test-node-8
image: node:8-alpine
- name: test-node-12
image: node:12-alpine
commands: ["npm run test -s"]

- name: test-node-10
image: node:10-alpine
- name: test-node-14
image: node:14-alpine
commands: ["npm run test -s"]

- name: test-node-12
image: node:12-alpine
- name: test-node-16
image: node:16-alpine
commands: ["npm run test -s"]

- name: publish
Expand All @@ -44,6 +44,6 @@ trigger:
event: [push]
---
kind: signature
hmac: 6c84ef08b4c6350feac14c1e9ea14a97f8c4d4309db47c866c6a97313bd8635d
hmac: e92a4f0cfab57ba83f4ec6ea13942fd05ee13530e140df95031407cf9543949a

...

0 comments on commit 7d25ad1

Please sign in to comment.