2019-10-16 17:47:51 +08:00
|
|
|
name: master
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
paths:
|
2019-10-20 10:59:03 +08:00
|
|
|
- 'node_modules/**'
|
2019-10-16 17:47:51 +08:00
|
|
|
- 'package.*'
|
|
|
|
- '.github/workflows/master.yml'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
prune:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
-
|
|
|
|
# https://github.com/actions/checkout/issues/6
|
|
|
|
name: Fix detached HEAD
|
|
|
|
run: git checkout ${GITHUB_REF#refs/heads/}
|
2019-10-23 16:06:29 +08:00
|
|
|
-
|
|
|
|
# https://github.com/actions/setup-node
|
|
|
|
name: Set up Node
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
2019-10-16 17:47:51 +08:00
|
|
|
-
|
|
|
|
name: Prune prod
|
|
|
|
run: |
|
|
|
|
rm -rf node_modules
|
|
|
|
npm install --production
|
|
|
|
-
|
|
|
|
name: Set up Git
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
run: |
|
|
|
|
git config user.name "${GITHUB_ACTOR}"
|
|
|
|
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
|
|
|
|
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
|
|
|
|
-
|
|
|
|
name: Commit and push changes
|
|
|
|
run: |
|
2019-10-16 20:43:41 +08:00
|
|
|
git add .
|
|
|
|
if output=$(git status --porcelain) && [ ! -z "$output" ]; then
|
|
|
|
git commit -m 'Update node_modules'
|
|
|
|
git push
|
|
|
|
fi
|