Skip to content

STYLE: Make CI status badges come first in README #3

STYLE: Make CI status badges come first in README

STYLE: Make CI status badges come first in README #3

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install build dependencies
run: |
npm ci
- name: Build
run: |
npm run build