1.5.0 #130
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: Theme Cards Unit Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Node.js envs | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "12.x" | |
- name: Generate | |
run: | | |
git clone https://github.com/hexojs/hexo-theme-unit-test.git test | |
git clone https://github.com/ChrAlpha/hexo-theme-cards-unit-test.git theme | |
cd ./test | |
git clone https://github.com/ChrAlpha/hexo-theme-cards.git themes/cards | |
npm install | |
npx hexo clean && npx hexo generate | |
cd ../theme | |
git clone https://github.com/ChrAlpha/hexo-theme-cards.git themes/cards | |
npm install | |
npx hexo clean && npx hexo generate |