feat: setup app

This commit is contained in:
Ron de las Alas 2023-05-15 14:10:59 -04:00
parent 020e1b7324
commit fa7ce7a776

View file

@ -2,25 +2,25 @@
# See: https://circleci.com/docs/configuration-reference # See: https://circleci.com/docs/configuration-reference
version: 2.1 version: 2.1
# Define a job to be invoked later in a workflow. orbs:
# See: https://circleci.com/docs/configuration-reference/#jobs slack: circleci/slack@4.12.5
jobs: aws-s3: circleci/aws-s3@3.1.1
say-hello: executors:
# Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub. scratchjr-website-executor:
# See: https://circleci.com/docs/configuration-reference/#executor-job
docker: docker:
- image: cimg/base:stable - image: cimg/node:17.0.0
# Add steps to the job jobs:
# See: https://circleci.com/docs/configuration-reference/#steps setup_app:
executor: scratchjr-website-executor
steps: steps:
- checkout
- run: - run:
name: "Say hello" name: Install Dependencies
command: "echo Hello, World!" command: npm install
- run:
# Orchestrate jobs using workflows name: List
# See: https://circleci.com/docs/configuration-reference/#workflows command: ls -la
workflows: workflows:
say-hello-workflow: build_and_deploy_scratchjr-website:
jobs: jobs:
- say-hello - setup_app:
name: Setup App