mirror of
https://github.com/scratchfoundation/scratchjr-website.git
synced 2025-08-28 22:30:12 -04:00
26 lines
610 B
YAML
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
|