Skip to content

Refetch libraries versions #1704

Refetch libraries versions

Refetch libraries versions #1704

Workflow file for this run

name: Refetch libraries versions
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 0 * * *'
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Install dependencies
run: npm install
- name: Refetch libs
run: npm run build
env:
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
- name: Push changes if needed
run: ./gitPushIfChanges.sh ${{ secrets.GITHUB_TOKEN }}