Skip to content

Improve linting and fix build errors #25

Improve linting and fix build errors

Improve linting and fix build errors #25

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Build
env:
NODE_OPTIONS: "--max_old_space_size=4096"
run: npm run build
- uses: actions/upload-artifact@v4
with:
name: mission-control
path: ./dist
retention-days: 1