mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-17 19:12:40 -05:00
setup circleci config
This commit is contained in:
parent
5e42b57a92
commit
b2c4f7c5ce
1 changed files with 19 additions and 4 deletions
|
@ -1,10 +1,25 @@
|
||||||
version: 2.1
|
version: 2.1
|
||||||
orbs:
|
|
||||||
node: circleci/node@3.0.0
|
aliases:
|
||||||
|
- &defaults
|
||||||
|
docker:
|
||||||
|
- image: circleci/node:12-browsers
|
||||||
|
auth:
|
||||||
|
username: $DOCKERHUB_USERNAME
|
||||||
|
password: $DOCKERHUB_PASSWORD
|
||||||
|
# working_directory: ~/repo
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
setup:
|
||||||
|
<<: *defaults
|
||||||
|
steps:
|
||||||
|
run: echo "Setup step is happening here"
|
||||||
|
|
||||||
|
|
||||||
workflows:
|
workflows:
|
||||||
node-tests:
|
build-test-deploy:
|
||||||
jobs:
|
jobs:
|
||||||
- node/test:
|
- setup:
|
||||||
filters:
|
filters:
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
|
|
Loading…
Reference in a new issue