-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a61c2dc
commit f4d0197
Showing
1 changed file
with
42 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,48 @@ | ||
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | ||
|
||
name: Node.js CI | ||
name: DoubleAm's Blog CI/CD # 脚本 workflow 名称 | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
branches: [main, master] # 当监测 main,master 的 push | ||
paths: # 监测所有 source 目录下的文件变动,所有 yml,json 后缀文件的变动。 | ||
- '*.json' | ||
- '**.yml' | ||
- '**/source/**' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [14.x, 16.x, 18.x] | ||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | ||
|
||
blog: # 任务名称 | ||
timeout-minutes: 30 # 设置 30 分钟超时 | ||
runs-on: ubuntu-latest # 指定最新 ubuntu 系统 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'npm' | ||
- run: npm ci | ||
- run: npm run build --if-present | ||
- run: npm test | ||
- uses: actions/checkout@v2 # 拉取仓库代码 | ||
- uses: actions/setup-node@v2 # 设置 node.js 环境 | ||
- name: Cache node_modules # 缓存 node_modules,提高编译速度,毕竟每月只有 2000 分钟。 | ||
uses: actions/cache@v2 # 亲测 Github 服务器编译速度比我自己电脑都快,如果每次构建按5分钟计算,我们每个月可以免费部署 400 次,Github yyds!!! | ||
env: | ||
cache-name: cache-node-modules | ||
with: | ||
path: ~/.npm | ||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-build-${{ env.cache-name }}- | ||
${{ runner.os }}-build- | ||
${{ runner.os }}- | ||
- name: Init Node.js # 安装源代码所需插件 | ||
run: | | ||
npm install | ||
echo "init node successful" | ||
- name: Install Hexo-cli # 安装 Hexo | ||
run: | | ||
npm install -g hexo-cli --save | ||
echo "install hexo successful" | ||
- name: Build Blog # 编译创建静态博客文件 | ||
run: | | ||
hexo clean | ||
hexo g | ||
echo "build blog successful" | ||
- name: Deploy DoubleAm's Blog # 设置 git 信息并推送静态博客文件 | ||
run: | | ||
git config --global user.name "windfollowingheart" | ||
git config --global user.email "[email protected]" | ||
hexo deploy | ||
- run: echo "Deploy Successful!" |