[LRS-83] Allow empty statement batches #64
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the workflow will run | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
test: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup CI environment | |
uses: yetanalytics/actions/[email protected] | |
- name: Execute Clojure Tests | |
run: clojure -A:dev -m xapi-schema.runner | |
- name: Build ClojureScript Tests | |
run: clojure -A:dev -m cljs.main -co build.test.edn -c | |
- name: Run ClojureScript Tests | |
run: node out/main.js |