Skip to content

Commit 7f9bd6c

Browse files
committed
chore: create new project
0 parents  commit 7f9bd6c

27 files changed

+6961
-0
lines changed

.eslintignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.idea
2+
node_modules
3+
*.js
4+
*.d.ts
5+
*.js.map
6+
!/types/*.d.ts

.github/workflows/ci.yml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
name: CI
2+
on: [push, pull_request]
3+
env:
4+
CI: true
5+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
6+
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
7+
DEPLOY_NODE_VERSION: 14.x
8+
jobs:
9+
build-and-test:
10+
name: Build and Test
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
node-version: [10.x, 12.x, 14.x]
15+
steps:
16+
- name: Find yarn cache
17+
id: find-yarn-cache
18+
run: echo "::set-output name=dir::$(yarn cache dir)"
19+
- name: git checkout
20+
uses: actions/checkout@v2
21+
- name: Cache yarn dependencies
22+
uses: actions/cache@v1
23+
with:
24+
path: ${{steps.find-yarn-cache.outputs.dir}}
25+
key: ${{runner.os}}-node${{matrix.node-version}}-yarn-${{hashFiles('**/yarn.lock')}}
26+
restore-keys: ${{runner.os}}-node${{matrix.node-version}}-yarn-
27+
- name: Set up Node.js v${{matrix.node-version}}
28+
uses: actions/setup-node@v1
29+
with:
30+
node-version: ${{matrix.node-version}}
31+
- run: yarn
32+
- run: yarn test
33+
- run: yarn lint
34+
# deploy:
35+
# name: Deploy
36+
# runs-on: ubuntu-latest
37+
# needs: build-and-test
38+
# steps:
39+
# - name: Find yarn cache
40+
# id: find-yarn-cache
41+
# run: echo "::set-output name=dir::$(yarn cache dir)"
42+
# - name: git checkout
43+
# uses: actions/checkout@v2
44+
# - name: Cache yarn dependencies
45+
# uses: actions/cache@v1
46+
# with:
47+
# path: ${{steps.find-yarn-cache.outputs.dir}}
48+
# key: ${{runner.os}}-node${{env.DEPLOY_NODE_VERSION}}-yarn-${{hashFiles('**/yarn.lock')}}
49+
# restore-keys: ${{runner.os}}-node${{env.DEPLOY_NODE_VERSION}}-yarn-
50+
# - name: Set up Node.js
51+
# uses: actions/setup-node@v1
52+
# with:
53+
# node-version: ${{env.DEPLOY_NODE_VERSION}}
54+
# - run: yarn
55+
# - run: yarn semantic-release

.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
/.idea/workspace.xml
2+
/.idea/tasks.xml
3+
/.idea/shelf
4+
/node_modules
5+
package-lock.json
6+
yarn-error.log
7+
npm-debug.log*
8+
*.js
9+
*.d.ts
10+
*.js.map
11+
!/types/*.d.ts
12+
13+
# macOS
14+
.DS_Store
15+
.AppleDouble
16+
.LSOverride
17+
._*
18+
.DocumentRevisions-V100
19+
.fseventsd
20+
.Spotlight-V100
21+
.TemporaryItems
22+
.Trashes
23+
.VolumeIcon.icns
24+
.AppleDB
25+
.AppleDesktop
26+
Network Trash Folder
27+
Temporary Items
28+
.apdisk
29+
30+
# Windows
31+
Thumbs.db
32+
ehthumbs.db
33+
Desktop.ini
34+
$RECYCLE.BIN/

.idea/.gitignore

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/angular-settings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/Project.xml

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/dictionaries/project.xml

Lines changed: 238 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)