Skip to content

Add basic CI that runs make build and check #1

Add basic CI that runs make build and check

Add basic CI that runs make build and check #1

Workflow file for this run

name: build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: make node_modules
- name: Run build
run: make build
- name: Run check
run: make check