Merge pull request #1315 from PJ-568/master #364
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
name: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14, latest] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
repository: hexojs/hexo-starter | |
- uses: actions/checkout@v3 | |
with: | |
path: themes/icarus | |
- uses: actions/checkout@v3 | |
with: | |
repository: SukkaLab/hexo-many-posts | |
path: source/_posts/hexo-many-posts | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: actions/cache@v3 | |
with: | |
path: node_modules | |
key: npm-cache | |
restore-keys: npm-cache | |
- run: npm install | |
- run: > | |
npm install $(node -e "const deps=require('./themes/icarus/package.json').dependencies; | |
console.log(Object.keys(deps).map(key=>key+'@'+deps[key]).join(' '));") | |
- run: npm install hexo-tag-embed | |
- run: npx hexo config theme icarus | |
- run: time NODE_ENV=production npx hexo g -b |