Skip to content

Merge pull request #8 from sanjibansg/cli #3

Merge pull request #8 from sanjibansg/cli

Merge pull request #8 from sanjibansg/cli #3

Workflow file for this run

name: substraitJS
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v3
- name: Initialize and update submodules
run: |
git submodule update --init --recursive
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test