Skip to content

Commit 75c6534

Browse files
committedNov 22, 2019
Initial commit
0 parents  commit 75c6534

File tree

521 files changed

+31160
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

521 files changed

+31160
-0
lines changed
 

‎.babelrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"plugins": ["@babel/plugin-syntax-dynamic-import"]
3+
}

‎.circleci/config.yml

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
version: 2.1
2+
3+
orbs:
4+
sage:
5+
executors:
6+
node-10:
7+
docker:
8+
- image: 'circleci/node:10-stretch'
9+
php-73:
10+
docker:
11+
- image: 'circleci/php:7.3-stretch'
12+
php-72:
13+
docker:
14+
- image: 'circleci/php:7.2-stretch'
15+
jobs:
16+
build-php:
17+
parameters:
18+
executor:
19+
type: executor
20+
executor: << parameters.executor >>
21+
steps:
22+
- run: php -v
23+
- checkout
24+
- restore_cache:
25+
keys:
26+
- composer-v1-{{ checksum "composer.lock" }}
27+
- composer-v1-
28+
- run: composer install -n --prefer-dist --no-scripts --no-suggest
29+
- run: composer lint
30+
- save_cache:
31+
key: composer-v1-{{ checksum "composer.lock" }}
32+
paths:
33+
- vendor
34+
build-node:
35+
executor: node-10
36+
steps:
37+
- run: yarn versions
38+
- checkout
39+
- restore_cache:
40+
keys:
41+
- node-v1-{{ checksum "yarn.lock" }}
42+
- node-v1-
43+
- run: yarn install --frozen-lockfile
44+
- run: yarn run test
45+
- run: yarn run build:production
46+
- save_cache:
47+
key: node-v1-{{ checksum "yarn.lock" }}
48+
paths:
49+
- node_modules
50+
51+
workflows:
52+
build:
53+
jobs:
54+
- sage/build-node
55+
- sage/build-php:
56+
name: build-php-73
57+
executor: sage/php-73
58+
- sage/build-php:
59+
name: build-php-72
60+
executor: sage/php-72

0 commit comments

Comments
 (0)
Please sign in to comment.