Skip to content

Simple build attempt with actions #4

Simple build attempt with actions

Simple build attempt with actions #4

Workflow file for this run

name: Node CI
on: [push]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: npm install, build, and test
run: |
npm install
npm run build
npm run test:unit || exit 0