Skip to content

CI

CI #705

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
branches: [main, beta, alpha]
schedule:
- cron: '0 3 * * *'
permissions: read-all
jobs:
test_unit:
name: Run Test Units
runs-on: ubuntu-latest
steps:
- name: 'Checkout code'
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- name: Use Node.js current version
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8
with:
node-version: current
- name: Install dependency
run: npm ci
- name: Build output
run: npm run build
- name: Run Test Units
run: npm run test