pipeline: install: image: 'node:17.3.0' commands: - yarn install # This step makes sure the project properly builds. build: image: 'node:17.3.0' group: test commands: - yarn run build lint: image: 'node:17.3.0' group: test commands: - yarn run lint