This is a valid circle pipeline:
version: 2.1
orbs:
browser-tools: circleci/browser-tools@1.2.3
jobs:
build:
docker:
- image: cimg/node:16.19.1-browsers
working_directory: ~/repo
steps:
- browser-tools/install-chrome
- checkout
- run: npm ci
- run: |
node bin/transifex/restructure.js
git diff --exit-code -- transifex/strings_en.json
- run: npm run lint
- run: npm run test
Conversion fails with no workflows defined.
Our conversion shouldn't require a workflow.
This is a valid circle pipeline:
Conversion fails with
no workflows defined.Our conversion shouldn't require a workflow.