Skip to content
This repository has been archived by the owner on Mar 24, 2024. It is now read-only.

Commit

Permalink
add test runs every hour
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco5dev committed Oct 2, 2023
1 parent 5aa1813 commit 8f78964
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/code-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Periodic testing of the JsonVerse

on:
schedule:
- cron: "* */1 * * *"
workflow_dispatch:
push:
branches:
- master

jobs:
Build:
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 install

Test:
needs: Build
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: Run Tests
run: npm run test

0 comments on commit 8f78964

Please sign in to comment.