mirror of https://github.com/ColorlibHQ/AdminLTE
🚀 ci improve
parent
e858dad585
commit
557ad3cef1
|
@ -4,6 +4,7 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
- v4-dev
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- "**"
|
- "**"
|
||||||
|
@ -19,9 +20,9 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
node:
|
node:
|
||||||
- "10.x"
|
|
||||||
- "12.x"
|
- "12.x"
|
||||||
- "14.x"
|
- "14.x"
|
||||||
|
- "16.x"
|
||||||
os:
|
os:
|
||||||
- "ubuntu-latest"
|
- "ubuntu-latest"
|
||||||
- "macos-latest"
|
- "macos-latest"
|
||||||
|
@ -58,6 +59,6 @@ jobs:
|
||||||
|
|
||||||
- name: Run bundlewatch
|
- name: Run bundlewatch
|
||||||
run: npm run bundlewatch
|
run: npm run bundlewatch
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.node, '14')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.node, '16')
|
||||||
env:
|
env:
|
||||||
BUNDLEWATCH_GITHUB_TOKEN: "${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}"
|
BUNDLEWATCH_GITHUB_TOKEN: "${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}"
|
|
@ -1,59 +0,0 @@
|
||||||
name: Docs
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- "**"
|
|
||||||
|
|
||||||
env:
|
|
||||||
FORCE_COLOR: 2
|
|
||||||
NODE: 14.x
|
|
||||||
RUBY: 2.7
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
run:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Clone repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Set up Node.js
|
|
||||||
uses: actions/setup-node@v2
|
|
||||||
with:
|
|
||||||
node-version: "${{ env.NODE }}"
|
|
||||||
|
|
||||||
- name: Set up Ruby
|
|
||||||
uses: ruby/setup-ruby@v1
|
|
||||||
with:
|
|
||||||
ruby-version: "${{ env.RUBY }}"
|
|
||||||
bundler-cache: true
|
|
||||||
working-directory: docs
|
|
||||||
|
|
||||||
- name: Version info
|
|
||||||
run: |
|
|
||||||
ruby --version
|
|
||||||
gem --version
|
|
||||||
bundle --version
|
|
||||||
java -version
|
|
||||||
|
|
||||||
- name: Set up npm cache
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: ~/.npm
|
|
||||||
key: ${{ runner.os }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
|
|
||||||
${{ runner.os }}-node-v${{ env.NODE }}-
|
|
||||||
|
|
||||||
- name: Install npm dependencies
|
|
||||||
run: npm ci
|
|
||||||
|
|
||||||
- name: Build docs
|
|
||||||
run: npm run docs-compile
|
|
||||||
|
|
||||||
- name: Run HTML validator
|
|
||||||
run: npm run docs-lint
|
|
|
@ -4,13 +4,14 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
- v4-dev
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- "**"
|
- "**"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
FORCE_COLOR: 2
|
FORCE_COLOR: 2
|
||||||
NODE: 14.x
|
NODE: 16.x
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
run:
|
run:
|
||||||
|
|
Loading…
Reference in New Issue