Skip to content

Commit 859e790

Browse files
fix: 把服务器图片资源归入版本库
1 parent 8b199ad commit 859e790

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+14540
-105
lines changed

blogvue/package-lock.json

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

blogvue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"vue-meta": "^2.3.3",
2525
"vue-router": "^3.1.6",
2626
"vuex": "^3.1.3"
27-
},
27+
},
2828
"devDependencies": {
2929
"@vue/cli-plugin-babel": "~4.3.0",
3030
"@vue/cli-plugin-eslint": "~4.3.0",

service/.github/workflows/nodejs.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: Node.js CI
5+
6+
on:
7+
push:
8+
branches: [ master ]
9+
pull_request:
10+
branches: [ master ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ${{ matrix.os }}
16+
17+
strategy:
18+
matrix:
19+
node-version: [10.x]
20+
os: [ubuntu-latest, windows-latest, macos-latest]
21+
22+
steps:
23+
- uses: actions/checkout@v2
24+
- name: Use Node.js ${{ matrix.node-version }}
25+
uses: actions/setup-node@v1
26+
with:
27+
node-version: ${{ matrix.node-version }}
28+
- run: npm i -g npminstall && npminstall
29+
- run: npm run ci
30+
env:
31+
CI: true

0 commit comments

Comments
 (0)