mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 15:47:53 -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
|
||||
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:
|
||||
node-tests:
|
||||
build-test-deploy:
|
||||
jobs:
|
||||
- node/test:
|
||||
- setup:
|
||||
filters:
|
||||
branches:
|
||||
only:
|
||||
|
|
Loading…
Reference in a new issue