Skip to content

Commit

Permalink
Merge pull request #31 from owncloud/node-version-for-ci
Browse files Browse the repository at this point in the history
Update owncloudci to nodejs 14
  • Loading branch information
kulmann authored Apr 19, 2021
2 parents 92ea69c + 05861ea commit 74aefbb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -245,31 +245,31 @@ def tests(ctx):
'steps': [
{
'name': 'install',
'image': 'owncloudci/nodejs:12',
'image': 'owncloudci/nodejs:14',
'pull': 'always',
'commands': [
'yarn install --frozen-lockfile',
],
},
{
'name': 'lint',
'image': 'owncloudci/nodejs:12',
'image': 'owncloudci/nodejs:14',
'pull': 'always',
'commands': [
'yarn lint',
],
},
{
'name': 'build',
'image': 'owncloudci/nodejs:12',
'image': 'owncloudci/nodejs:14',
'pull': 'always',
'commands': [
'yarn build',
],
},
{
'name': 'unit',
'image': 'owncloudci/nodejs:12',
'image': 'owncloudci/nodejs:14',
'pull': 'always',
'commands': [
'yarn test:unit'
Expand Down Expand Up @@ -298,7 +298,7 @@ def release(ctx):
'steps': [
{
'name': 'build',
'image': 'owncloudci/nodejs:11',
'image': 'owncloudci/nodejs:14',
'pull': 'always',
'commands': [
'yarn install --frozen-lockfile',
Expand Down

0 comments on commit 74aefbb

Please sign in to comment.