Skip to content

Commit 750f427

Browse files
committed
formating
1 parent 3045868 commit 750f427

16 files changed

+2224
-2224
lines changed

.github/FUNDING.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# These are supported funding model platforms
2-
3-
github: CoCreate-app
1+
# These are supported funding model platforms
2+
3+
github: CoCreate-app

.github/workflows/automated.yml

+95-95
Original file line numberDiff line numberDiff line change
@@ -1,95 +1,95 @@
1-
name: Automated
2-
"on":
3-
push:
4-
branches:
5-
- master
6-
jobs:
7-
about:
8-
runs-on: ubuntu-latest
9-
steps:
10-
- name: Checkout
11-
uses: actions/checkout@v3
12-
- name: setup nodejs
13-
uses: actions/setup-node@v3
14-
with:
15-
node-version: 16
16-
- name: Jaid/action-sync-node-meta
17-
uses: jaid/[email protected]
18-
with:
19-
direction: overwrite-github
20-
githubToken: "${{ secrets.GITHUB }}"
21-
release:
22-
runs-on: ubuntu-latest
23-
steps:
24-
- name: Checkout
25-
uses: actions/checkout@v3
26-
- name: setup nodejs
27-
uses: actions/setup-node@v3
28-
with:
29-
node-version: 16
30-
- name: Semantic Release
31-
uses: cycjimmy/semantic-release-action@v3
32-
id: semantic
33-
with:
34-
extra_plugins: |
35-
@semantic-release/changelog
36-
@semantic-release/git
37-
@semantic-release/github
38-
env:
39-
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
40-
NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
41-
outputs:
42-
new_release_published: "${{ steps.semantic.outputs.new_release_published }}"
43-
new_release_version: "${{ steps.semantic.outputs.new_release_version }}"
44-
cdn:
45-
runs-on: ubuntu-latest
46-
needs: release
47-
if: needs.release.outputs.new_release_published == 'true'
48-
env:
49-
VERSION: "${{ needs.release.outputs.new_release_version }}"
50-
steps:
51-
- name: Checkout
52-
uses: actions/checkout@v3
53-
- name: setup nodejs
54-
uses: actions/setup-node@v3
55-
with:
56-
node-version: 16
57-
- name: yarn install
58-
run: >
59-
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >
60-
.npmrc
61-
62-
yarn install
63-
- name: yarn build
64-
run: yarn build
65-
- name: upload bundle as version
66-
uses: CoCreate-app/CoCreate-s3@master
67-
with:
68-
aws-key-id: "${{ secrets.AWSACCESSKEYID }}"
69-
aws-access-key: "${{ secrets.AWSSECERTACCESSKEY }}"
70-
bucket: testcrudbucket
71-
source: ./dist
72-
destination: "/parallax/${{env.VERSION}}"
73-
acl: public-read
74-
- name: upload bundle as latest
75-
uses: CoCreate-app/CoCreate-s3@master
76-
with:
77-
aws-key-id: "${{ secrets.AWSACCESSKEYID }}"
78-
aws-access-key: "${{ secrets.AWSSECERTACCESSKEY }}"
79-
bucket: testcrudbucket
80-
source: ./dist
81-
destination: /parallax/latest
82-
acl: public-read
83-
invalidations: true
84-
docs:
85-
runs-on: ubuntu-latest
86-
steps:
87-
- name: Checkout
88-
uses: actions/checkout@v3
89-
- name: setup nodejs
90-
uses: actions/setup-node@v3
91-
with:
92-
node-version: 16
93-
94-
- name: update documentation
95-
uses: CoCreate-app/CoCreate-docs@master
1+
name: Automated
2+
"on":
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
about:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v3
12+
- name: setup nodejs
13+
uses: actions/setup-node@v3
14+
with:
15+
node-version: 16
16+
- name: Jaid/action-sync-node-meta
17+
uses: jaid/[email protected]
18+
with:
19+
direction: overwrite-github
20+
githubToken: "${{ secrets.GITHUB }}"
21+
release:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: Checkout
25+
uses: actions/checkout@v3
26+
- name: setup nodejs
27+
uses: actions/setup-node@v3
28+
with:
29+
node-version: 16
30+
- name: Semantic Release
31+
uses: cycjimmy/semantic-release-action@v3
32+
id: semantic
33+
with:
34+
extra_plugins: |
35+
@semantic-release/changelog
36+
@semantic-release/git
37+
@semantic-release/github
38+
env:
39+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
40+
NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
41+
outputs:
42+
new_release_published: "${{ steps.semantic.outputs.new_release_published }}"
43+
new_release_version: "${{ steps.semantic.outputs.new_release_version }}"
44+
cdn:
45+
runs-on: ubuntu-latest
46+
needs: release
47+
if: needs.release.outputs.new_release_published == 'true'
48+
env:
49+
VERSION: "${{ needs.release.outputs.new_release_version }}"
50+
steps:
51+
- name: Checkout
52+
uses: actions/checkout@v3
53+
- name: setup nodejs
54+
uses: actions/setup-node@v3
55+
with:
56+
node-version: 16
57+
- name: yarn install
58+
run: >
59+
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >
60+
.npmrc
61+
62+
yarn install
63+
- name: yarn build
64+
run: yarn build
65+
- name: upload bundle as version
66+
uses: CoCreate-app/CoCreate-s3@master
67+
with:
68+
aws-key-id: "${{ secrets.AWSACCESSKEYID }}"
69+
aws-access-key: "${{ secrets.AWSSECERTACCESSKEY }}"
70+
bucket: testcrudbucket
71+
source: ./dist
72+
destination: "/parallax/${{env.VERSION}}"
73+
acl: public-read
74+
- name: upload bundle as latest
75+
uses: CoCreate-app/CoCreate-s3@master
76+
with:
77+
aws-key-id: "${{ secrets.AWSACCESSKEYID }}"
78+
aws-access-key: "${{ secrets.AWSSECERTACCESSKEY }}"
79+
bucket: testcrudbucket
80+
source: ./dist
81+
destination: /parallax/latest
82+
acl: public-read
83+
invalidations: true
84+
docs:
85+
runs-on: ubuntu-latest
86+
steps:
87+
- name: Checkout
88+
uses: actions/checkout@v3
89+
- name: setup nodejs
90+
uses: actions/setup-node@v3
91+
with:
92+
node-version: 16
93+
94+
- name: update documentation
95+
uses: CoCreate-app/CoCreate-docs@master

.github/workflows/manual.yml

+44-44
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
1-
name: Manual Workflow
2-
on:
3-
workflow_dispatch:
4-
inputs:
5-
invalidations:
6-
description: |
7-
If set to 'true', invalidates previous upload.
8-
default: "true"
9-
required: true
10-
11-
jobs:
12-
cdn:
13-
runs-on: ubuntu-latest
14-
env:
15-
DRY_RUN: ${{ github.event.inputs.dry_run }}
16-
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
17-
NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
18-
19-
steps:
20-
- name: Checkout
21-
uses: actions/checkout@v3
22-
- name: setup nodejs
23-
uses: actions/setup-node@v3
24-
with:
25-
node-version: 16
26-
- name: yarn install
27-
run: >
28-
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >
29-
.npmrc
30-
31-
yarn install
32-
- name: yarn build
33-
run: yarn build
34-
- name: upload latest bundle
35-
uses: CoCreate-app/CoCreate-s3@master
36-
with:
37-
aws-key-id: "${{ secrets.AWSACCESSKEYID }}"
38-
aws-access-key: "${{ secrets.AWSSECERTACCESSKEY }}"
39-
distributionId: "${{ secrets.DISTRIBUTION_ID }}"
40-
bucket: testcrudbucket
41-
source: ./dist
42-
destination: /parallax/latest
43-
acl: public-read
44-
invalidations: ${{ github.event.inputs.invalidations }}
1+
name: Manual Workflow
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
invalidations:
6+
description: |
7+
If set to 'true', invalidates previous upload.
8+
default: "true"
9+
required: true
10+
11+
jobs:
12+
cdn:
13+
runs-on: ubuntu-latest
14+
env:
15+
DRY_RUN: ${{ github.event.inputs.dry_run }}
16+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
17+
NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
18+
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v3
22+
- name: setup nodejs
23+
uses: actions/setup-node@v3
24+
with:
25+
node-version: 16
26+
- name: yarn install
27+
run: >
28+
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >
29+
.npmrc
30+
31+
yarn install
32+
- name: yarn build
33+
run: yarn build
34+
- name: upload latest bundle
35+
uses: CoCreate-app/CoCreate-s3@master
36+
with:
37+
aws-key-id: "${{ secrets.AWSACCESSKEYID }}"
38+
aws-access-key: "${{ secrets.AWSSECERTACCESSKEY }}"
39+
distributionId: "${{ secrets.DISTRIBUTION_ID }}"
40+
bucket: testcrudbucket
41+
source: ./dist
42+
destination: /parallax/latest
43+
acl: public-read
44+
invalidations: ${{ github.event.inputs.invalidations }}

.gitignore

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# ignore
2-
node_modules
3-
dist
4-
package-lock.json
5-
yarn.lock
6-
pnpm-lock.yaml
7-
8-
logs
9-
*.log
10-
npm-debug.log*
11-
yarn-debug.log*
12-
yarn-error.log*
13-
lerna-debug.log*
14-
.pnpm-debug.log*
1+
# ignore
2+
node_modules
3+
dist
4+
package-lock.json
5+
yarn.lock
6+
pnpm-lock.yaml
7+
8+
logs
9+
*.log
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
lerna-debug.log*
14+
.pnpm-debug.log*

0 commit comments

Comments
 (0)