-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (38 loc) · 992 Bytes
/
stagepcna.yaml
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
41
42
43
name: Run puppeeteer for PCNA (Stage)
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: "10 * * * *"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install -g yarn
- run: yarn
- run: npx tsc
- run: free -h
- run: ls -a
- run: node stagepcna.js > stagepcna.markdown
- run: git config user.name "Kushal Hada";
if: always()
- run: git config user.email "kus@tilde.team";
if: always()
- run: git add .;
if: always()
- run: git commit -m "add stage pcna perf log" -m "perf matters";
if: always()
- run: git pull --rebase --strategy-option=theirs;
if: always()
- run: git push origin master;
if: always()