Sometimes I forget this shit... So easy to hold onto it instead of constantly googling.
git init
git add -A
git commit -m ""
git remote add origin [email protected]:jerdog/my-new-project.git
# This config is equivalent to both the '.circleci/extended/orb-free.yml' and the base '.circleci/config.yml' | |
version: 2.1 | |
orbs: | |
node: circleci/[email protected] | |
jobs: | |
deploy: | |
docker: | |
- image: cimg/node:16.6.0 |
# CircleCI NodeJS Starter Config | |
version: 2.1 | |
jobs: | |
test: | |
docker: | |
- image: cimg/node:lts | |
steps: | |
- checkout | |
- run: | |
name: Install dependencies |
Sometimes I forget this shit... So easy to hold onto it instead of constantly googling.
git init
git add -A
git commit -m ""
git remote add origin [email protected]:jerdog/my-new-project.git