chore: Disable branch execution (#125)
This commit is contained in:
parent
57168bc2bc
commit
7dc067063b
3 changed files with 75 additions and 5328 deletions
133
.github/workflows/test.yml
vendored
133
.github/workflows/test.yml
vendored
|
@ -1,74 +1,89 @@
|
||||||
name: 'Test'
|
name: 'Test'
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
|
||||||
types: [opened, synchronize]
|
|
||||||
paths-ignore:
|
|
||||||
- '**.md'
|
|
||||||
push:
|
push:
|
||||||
paths-ignore:
|
|
||||||
- '**.md'
|
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
paths-ignore:
|
||||||
|
- '**.md'
|
||||||
|
pull_request:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- synchronize
|
||||||
|
paths-ignore:
|
||||||
|
- '**.md'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
skipci:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- run: echo "[Skip CI] ${{ contains(github.event.head_commit.message, '[skip ci]') }}"
|
||||||
|
|
||||||
- name: Read .nvmrc
|
test:
|
||||||
run: echo "::set-output name=NVMRC::$(cat .nvmrc)"
|
|
||||||
id: nvm
|
|
||||||
|
|
||||||
- name: Setup Node
|
|
||||||
uses: actions/setup-node@v1
|
|
||||||
with:
|
|
||||||
node-version: '${{ steps.nvm.outputs.NVMRC }}'
|
|
||||||
|
|
||||||
- name: Cache
|
|
||||||
uses: actions/cache@v1
|
|
||||||
with:
|
|
||||||
path: ~/.npm
|
|
||||||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-node-
|
|
||||||
|
|
||||||
- run: npm ci
|
|
||||||
|
|
||||||
- run: npm run format:check
|
|
||||||
|
|
||||||
- run: npm run lint
|
|
||||||
|
|
||||||
- run: npm test
|
|
||||||
|
|
||||||
- name: Check ncc
|
|
||||||
run: |
|
|
||||||
npm run build
|
|
||||||
test -z "$(git status --short)"
|
|
||||||
|
|
||||||
- name: Upload test coverage
|
|
||||||
uses: actions/upload-artifact@v1
|
|
||||||
with:
|
|
||||||
name: coverage
|
|
||||||
path: coverage
|
|
||||||
|
|
||||||
|
|
||||||
test-prod:
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
needs: test
|
if: contains(github.event.head_commit.message, '[skip ci]') == false
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: ['ubuntu-18.04', 'macos-latest', 'windows-latest']
|
os:
|
||||||
hugo-version: ['latest', '0.57.2']
|
- 'ubuntu-18.04'
|
||||||
extended: [true, false]
|
- 'macos-latest'
|
||||||
|
- 'windows-latest'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Test action
|
- uses: actions/checkout@v2
|
||||||
uses: ./
|
|
||||||
with:
|
- name: Read .nvmrc
|
||||||
hugo-version: ${{ matrix.hugo-version }}
|
run: echo "::set-output name=NVMRC::$(cat .nvmrc)"
|
||||||
extended: ${{ matrix.extended }}
|
id: nvm
|
||||||
|
|
||||||
|
- name: Setup Node
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: '${{ steps.nvm.outputs.NVMRC }}'
|
||||||
|
|
||||||
|
- name: Get npm cache directory
|
||||||
|
id: npm-cache
|
||||||
|
run: |
|
||||||
|
echo "::set-output name=dir::$(npm config get cache)"
|
||||||
|
|
||||||
|
- name: Cache npm
|
||||||
|
uses: actions/cache@v1
|
||||||
|
with:
|
||||||
|
path: ${{ steps.npm-cache.outputs.dir }}
|
||||||
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-node-
|
||||||
|
|
||||||
|
- run: npm ci
|
||||||
|
|
||||||
|
- name: Run prettier
|
||||||
|
if: startsWith(matrix.os, 'ubuntu')
|
||||||
|
run: npm run format:check
|
||||||
|
|
||||||
|
- name: Run eslint
|
||||||
|
if: startsWith(matrix.os, 'ubuntu')
|
||||||
|
run: npm run lint
|
||||||
|
|
||||||
|
- name: Run ncc
|
||||||
|
if: startsWith(matrix.os, 'ubuntu')
|
||||||
|
run: npm run build
|
||||||
|
|
||||||
|
- run: npm test
|
||||||
|
|
||||||
|
- name: Upload test coverage as artifact
|
||||||
|
uses: actions/upload-artifact@v1
|
||||||
|
with:
|
||||||
|
name: coverage
|
||||||
|
path: coverage
|
||||||
|
|
||||||
|
# - name: Upload test coverage to Coveralls
|
||||||
|
# uses: coverallsapp/github-action@v1.0.1
|
||||||
|
# with:
|
||||||
|
# github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
# parallel: true
|
||||||
|
#
|
||||||
|
# - name: Coveralls Finished
|
||||||
|
# uses: coverallsapp/github-action@v1.0.1
|
||||||
|
# with:
|
||||||
|
# github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
# parallel-finished: true
|
||||||
|
|
5267
lib/index.js
vendored
5267
lib/index.js
vendored
File diff suppressed because it is too large
Load diff
|
@ -15,8 +15,7 @@
|
||||||
"husky": {
|
"husky": {
|
||||||
"skipCI": true,
|
"skipCI": true,
|
||||||
"hooks": {
|
"hooks": {
|
||||||
"pre-commit": "lint-staged",
|
"pre-commit": "lint-staged"
|
||||||
"post-commit": "npm run build && echo '⚠️ Do not forget to Commit and Push ./lib/index.js'"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
|
|
Loading…
Reference in a new issue