-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (36 loc) · 1.32 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Get PageSpeed Insights
on:
workflow_dispatch:
jobs:
getpsresults:
env:
URL_TO_ANALYZE: https://inico.dev/
RESULTS_DIR: public/images
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- name: Install Node.js
uses: actions/setup-node@v2
- name: Install psi-svg
run: |
npm i -g psi-svg
- name: Run npx command
run: | # Have to be sure a folder is present if not, make it
mkdir -p ${RESULTS_DIR}
psi-svg $URL_TO_ANALYZE $RESULTS_DIR/desktop.svg --strategy=desktop
psi-svg $URL_TO_ANALYZE $RESULTS_DIR/mobile.svg --strategy=mobile
- name: Commit files
run: |
git add .
git config --local user.email "[email protected]"
git config --local user.name "github-actions[bot]"
git diff --quiet && git diff --staged --quiet || git commit -am "Updated Pagespeed results"
- name: Push changes
uses: ad-m/github-push-action@master # This is a premade github action
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}