Skip to content

DMN_TCK

DMN_TCK #536

Workflow file for this run

name: DMN_TCK
on:
schedule:
- cron: '* 1 * * *'
push:
pull_request:
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Checkout TCK repo
uses: actions/checkout@v4
with:
repository: dmn-tck/tck
path: tmp/dmn-tck
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Execute TCK tests
run: npm run tck
env:
TCK_DIR: tmp/dmn-tck