From fa7ce7a7761385cfe2ceccae34f6232d3ff2b694 Mon Sep 17 00:00:00 2001 From: Ron de las Alas Date: Mon, 15 May 2023 14:10:59 -0400 Subject: [PATCH] feat: setup app --- .circleci/config.yml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4175da6..c7d7616 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,25 +2,25 @@ # See: https://circleci.com/docs/configuration-reference version: 2.1 -# Define a job to be invoked later in a workflow. -# See: https://circleci.com/docs/configuration-reference/#jobs -jobs: - say-hello: - # Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub. - # See: https://circleci.com/docs/configuration-reference/#executor-job +orbs: + slack: circleci/slack@4.12.5 + aws-s3: circleci/aws-s3@3.1.1 +executors: + scratchjr-website-executor: docker: - - image: cimg/base:stable - # Add steps to the job - # See: https://circleci.com/docs/configuration-reference/#steps + - image: cimg/node:17.0.0 +jobs: + setup_app: + executor: scratchjr-website-executor steps: - - checkout - run: - name: "Say hello" - command: "echo Hello, World!" - -# Orchestrate jobs using workflows -# See: https://circleci.com/docs/configuration-reference/#workflows + name: Install Dependencies + command: npm install + - run: + name: List + command: ls -la workflows: - say-hello-workflow: - jobs: - - say-hello + build_and_deploy_scratchjr-website: + jobs: + - setup_app: + name: Setup App