Skip to content

Node CI

Node CI #1661

Workflow file for this run

name: Node CI
on:
push:
schedule:
- cron: "0 15 */1 * *"
jobs:
run:
name: Run ebiname
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: npm install, build, and run
run: |
yarn
yarn test
yarn start
env:
TZ: "Asia/Tokyo"
MASTODON_HOST: ${{ secrets.MASTODON_HOST }}
MASTODON_TOKEN: ${{ secrets.MASTODON_TOKEN }}
MASTODON_BOT_TOKEN: ${{ secrets.MASTODON_BOT_TOKEN }}
MASTODON_NAME: ${{ secrets.MASTODON_NAME }}