build #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |