Skip to content

πŸŒƒ Nightly

πŸŒƒ Nightly #891

Workflow file for this run

name: 'πŸŒƒ Nightly'
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 12 * * *'
workflow_dispatch:
jobs:
lockfile:
if: github.repository_owner == 'abereghici'
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 16
- name: Clear lockfile
run: rm -rf package-lock.json node_modules
- name: Install dependencies
run: npm i
- name: Create Pull Request
id: createpr
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: '[CI] update lockfile'
title: '[CI] update lockfile'
body: >
This PR is auto-generated by a nightly GitHub action. It should
automatically be merged if tests pass.