Skip to content

DailyTest

DailyTest #1179

Workflow file for this run

name: DailyTest
on:
schedule:
- cron: '0 8 * * 1-5'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18, 20]
services:
mongodb:
image: mongo:4.0.18
ports:
- 27017:27017
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install FoalTS CLI
run: npm install -g @foal/cli
- name: Run acceptance tests (Bash)
run: ./e2e_test.sh