Skip to content

build

build #10

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
# https://github.com/actions/setup-node/tree/main
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
cache: npm
node-version: 20.x
- name: Install tooling
run: |
npm install
npm install bower
npm install grunt-cli
npx bower install
- name: Build the application
run: |
grunt build
- name: Create an artifact
uses: actions/upload-artifact@v4
with:
name: spookydb-dist
path: |
dist