This commit is contained in:
christopher 2020-11-03 15:59:07 +05:30
Родитель 3f59624942
Коммит 56afd9ccbb
4 изменённых файлов: 132 добавлений и 0 удалений

31
.github/workflows/node.js.yml поставляемый Normal file
Просмотреть файл

@ -0,0 +1,31 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
pull_request:
branches: [ master ]
types: [opened, closed, edited, synchronize]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm i

47
.github/workflows/publish.js.yml поставляемый Normal file
Просмотреть файл

@ -0,0 +1,47 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: set environment variables
uses: allenevans/set-env@v1.0.0
with:
GIT_USER: ${{ secrets.WEB_GITLAB_USER }}
GIT_TOKEN: ${{ secrets.WEB_GITLAB_TOKEN }}
GIT_MAIL: ${{ secrets.USER_MAIL }}
- name: Install
run: npm i
- name: Get changed files
run: |
git diff --name-only HEAD^ HEAD
- name: Publish
run: npm run publish
env:
GIT_USER: ${{ secrets.WEB_GITLAB_USER }}
GIT_TOKEN: ${{ secrets.WEB_GITLAB_TOKEN }}
GIT_MAIL: ${{ secrets.USER_MAIL }}

8
.gitignore поставляемый Normal file
Просмотреть файл

@ -0,0 +1,8 @@
.npmrc
dist/
.vscode/
coverage/
index.js
index.d.ts
gulpfile.js
node_modules/

46
package.json Normal file
Просмотреть файл

@ -0,0 +1,46 @@
{
"name": "@Syncfusion/install-docs",
"version": "1.0.0",
"description": "Syncfusion TypeScript common documentation",
"author": "Syncfusion Inc.",
"license": "UNLICENSED",
"dependencies": {
"core-js": "^2.5.7",
"cheerio": "^1.0.0-rc.2",
"gulp": "^3.9.1",
"gulp-csslint": "^1.0.1",
"gulp-csslint-report": "^2.0.0",
"gulp-gzip": "^1.4.2",
"lodash": "^4.17.11",
"markdownlint": "^0.11.0",
"markdown-link-extractor": "^1.2.0",
"markdown-spellcheck": "^1.3.1",
"prismjs": "^1.15.0",
"require-dir": "^1.0.0",
"shelljs": "^0.8.2",
"styled-components": "^3.4.9",
"typeface-merriweather": "0.0.43",
"typeface-montserrat": "0.0.43",
"typo-js": "^1.0.3",
"typescript": "^2.6.2",
"typography": "^0.16.17",
"typography-theme-wordpress-2016": "^0.15.10",
"webpack": "4.28.4",
"terser": "3.14.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.11.1",
"gh-pages": "^1.2.0",
"json-loader": "^0.5.7",
"prettier": "^1.14.2"
},
"config": {
"ghooks": {
"pre-commit": "gulp test"
}
},
"scripts": {
"publish": "gulp ship-to-gitlab"
}
}