6 types: [synchronize, opened]
11 runs-on: ubuntu-latest
14 CI_BRANCH_BASE: develop
17 - uses: actions/checkout@v2
20 uses: actions/setup-node@v1
24 - name: Cache Node.js modules
25 uses: actions/cache@v2
29 key: ${{ runner.OS }}-node-${{ hashFiles('**/yarn.lock') }}
31 ${{ runner.OS }}-node-
34 - name: Install dependencies
35 run: yarn install --frozen-lockfile
37 - name: Angular bundlewatch
38 uses: jackyef/bundlewatch-gh-action@master
40 build-script: npm run build -- --analyze-bundle
42 bundlewatch-github-token: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}
44 - name: PeerTube code stats
45 if: github.event_name != 'pull_request'
47 wget "https://github.com/boyter/scc/releases/download/v3.0.0/scc-3.0.0-x86_64-unknown-linux.zip"
48 unzip "scc-3.0.0-x86_64-unknown-linux.zip"
49 ./scc --format=json --exclude-dir .git,node_modules,client/node_modules,client/dist,dist,yarn.lock,client/yarn.lock,client/src/locale,test1,test2,test3,client/src/assets/images,config,storage,server/tests/fixtures,support/openapi,.idea,.vscode,docker-volume,ffmpeg-3,ffmpeg-4 > ./scc.json
51 - name: PeerTube client stats
52 if: github.event_name != 'pull_request'
54 node dist/scripts/client-build-stats.js > client-build-stats.json
56 - name: PeerTube client lighthouse report
57 if: github.event_name != 'pull_request'
59 sudo apt-get install chromium-browser
60 sudo npm install -g lighthouse
61 lighthouse --chrome-flags="--headless" https://peertube2.cpy.re --output=json --output-path=./lighthouse.json
64 if: github.event_name != 'pull_request'
66 cat client-build-stats.json
71 if: github.event_name != 'pull_request'
73 STATS_DEPLOYEMENT_KNOWN_HOSTS: ${{ secrets.STATS_DEPLOYEMENT_KNOWN_HOSTS }}
74 STATS_DEPLOYEMENT_KEY: ${{ secrets.STATS_DEPLOYEMENT_KEY }}
75 STATS_DEPLOYEMENT_USER: ${{ secrets.STATS_DEPLOYEMENT_USER }}
76 STATS_DEPLOYEMENT_HOST: ${{ secrets.STATS_DEPLOYEMENT_HOST }}
80 if [ ! -z ${STATS_DEPLOYEMENT_KNOWN_HOSTS+x} ]; then
81 echo "Adding ssh key to known hosts"
82 echo -e "${STATS_DEPLOYEMENT_KNOWN_HOSTS}" > ~/.ssh/known_hosts;
87 if [ ! -z ${STATS_DEPLOYEMENT_KEY+x} ]; then
88 echo "Adding ssh reployement key"
89 ssh-add <(echo "${STATS_DEPLOYEMENT_KEY}");
92 if [ ! -z ${STATS_DEPLOYEMENT_KEY+x} ]; then
93 echo "Uploading files"
94 scp lighthouse.json client-build-stats.json scc.json ${STATS_DEPLOYEMENT_USER}@${STATS_DEPLOYEMENT_HOST}:../../web/peertube-stats;