Skip to content

Add GH action to build library and run test suite #1

Add GH action to build library and run test suite

Add GH action to build library and run test suite #1

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
submodules: true
- name: Set up node environment
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'

Check failure on line 18 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 18
- name: Build library
run: make
- name: Runs tests
run: yarn node --experimental-vm-modules $(yarn bin jest)