Skip to content

Testing of Verse.db (Tests) #28

Testing of Verse.db (Tests)

Testing of Verse.db (Tests) #28

Workflow file for this run

name: Periodic testing of the JsonVerse
on:
schedule:
- cron: "0 * * * *"
workflow_dispatch:
push:
branches:
- master
jobs:
Setup:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install Dependencies
run: npm i
Test:
needs: Setup
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies
run: npm i
- name: Run Tests
run: npm run test