mirror of
https://github.com/Aviortheking/codestats-readme.git
synced 2025-04-23 02:52:09 +00:00
* chore: testing theme preview script * fix: workflow * test current pr * comment on pr script * fix: preview theme script * fix: preview theme * fix: token fix * test: theme * fix: conflict
31 lines
621 B
YAML
31 lines
621 B
YAML
name: Theme preview
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
branches:
|
|
- master
|
|
- theme-preview-script
|
|
- "themes/index.js"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: setup node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: "12.x"
|
|
|
|
- name: npm install, preview theme
|
|
run: |
|
|
npm install
|
|
npm run preview-theme
|
|
env:
|
|
CI: true
|
|
PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|