Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
markussiebert committed Apr 8, 2022
1 parent f7f8abf commit e2dfd7f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ fixme.forEach((wf) => {
container: { image: 'jsii/superchain:1-buster-slim-node16' },
};
}
wf.jobs[key] = { ...wf.jobs[key], needs: [ ...wf.jobs[key].needs || [], 'zipper' ] };
wf.jobs[key] = {
...wf.jobs[key],
needs: [...(wf.jobs[key].needs || []), 'zipper'],
};
});
wf.addJob('gobuild', {
name: 'gobuild',
Expand Down

0 comments on commit e2dfd7f

Please sign in to comment.