mirror of
https://github.com/scratchfoundation/scratchjr-website.git
synced 2025-08-28 22:30:12 -04:00
feat: setup app
This commit is contained in:
parent
020e1b7324
commit
fa7ce7a776
1 changed files with 18 additions and 18 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue