Merge pull request #22458 from dd-center/submit-22457 #31152
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: Node CI | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: npm install, and test | |
run: | | |
npm install | |
npm run action-test | |
update: | |
needs: [test] | |
if: github.ref == 'refs/heads/master' | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: npm generate | |
run: | | |
npm install | |
npm run update | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./ | |
cname: vdb.vtbs.moe | |
user_name: 'nanashi' | |
user_email: 'example@example.com' | |
enable_jekyll: true |