scratchjr-website/.circleci/config.yml
Ron de las Alas fa7ce7a776 feat: setup app
2023-05-15 14:10:59 -04:00

26 lines
610 B
YAML

# Use the latest 2.1 version of CircleCI pipeline process engine.
# See: https://circleci.com/docs/configuration-reference
version: 2.1
orbs:
slack: circleci/slack@4.12.5
aws-s3: circleci/aws-s3@3.1.1
executors:
scratchjr-website-executor:
docker:
- image: cimg/node:17.0.0
jobs:
setup_app:
executor: scratchjr-website-executor
steps:
- run:
name: Install Dependencies
command: npm install
- run:
name: List
command: ls -la
workflows:
build_and_deploy_scratchjr-website:
jobs:
- setup_app:
name: Setup App