Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

bundle all the deps

bundle all the deps #9

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@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: "18.x"
- name: Install Dependencies
run: npm ci
- name: Typecheck and Build
run: npm run build