Skip to content

published dist, removed debug flags. (#413) #969

published dist, removed debug flags. (#413)

published dist, removed debug flags. (#413) #969

Workflow file for this run

# Build MRjs and confirm everything passes
name: npm run build
on:
workflow_dispatch:
push:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# todo - run the npm install with a dockerfile setup instead of pure
# install but not important to do right now since install isnt too long
- uses: actions/setup-node@v4
with:
node-version: 21
- name: Install Dependencies
run: |
npm install
- name: 👷 Build
run: |
npm run build