Skip to content

Instantly share code, notes, and snippets.

@kienstra
Created January 28, 2022 05:02
Show Gist options
  • Save kienstra/70ae44bf4c92b63f6c6c5864126a93f3 to your computer and use it in GitHub Desktop.
Save kienstra/70ae44bf4c92b63f6c6c5864126a93f3 to your computer and use it in GitHub Desktop.
A starter .circleci/config.yml
# https://circleci.com/docs/2.0/config-intro/
version: 2.1
jobs:
test:
docker:
- image: cimg/node:16.8.0-browsers
steps:
- checkout
- run: echo "Running example step, please edit this file"
workflows:
test-flow:
jobs:
- test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment