Skip to content

build

build #3

Workflow file for this run

name: Build
on:
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout spooky db code
uses: actions/checkout@v4
- name: Install tooling
run: |
npm install bower grunt-cli
npx bower install
npm install --force
- name: Build the application
run: |
grunt build
- name: Create an artifact
uses: actions/upload-artifact@v4
with:
name: spookydb-dist
path: |
dist