Skip to content

Build README

Build README #129

Workflow file for this run

name: Build README
on:
push:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build README
run: |-
npm start
cat README.md
- name: Commit & Push changes
uses: actions-js/push@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
author_email: "shaunoneill7@gmail.com"
author_name: "ReadMe Bot"
message: ":sparkles: feat(README.md): Updated README"