Skip to content

Node.js CI

Node.js CI #1281

Workflow file for this run

name: Node.js CI
on:
# push:
schedule:
- cron: '00 16 * * *'
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'
- run: npm install
- run: npm run build --if-present
- run: |
git config --global user.name 'Veveue'
git config --global user.email '[email protected]'
git commit -am "update wakatime.md"
git push
env:
CI: true