Skip to content

Commit

Permalink
feat: add basic ci and bare package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
BracketJohn committed Mar 1, 2023
1 parent de341c1 commit 7e7c712
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on:
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Use Node 18.14.2
uses: actions/setup-node@v3
with:
node-version: 18.14.2

- run: npm install
14 changes: 14 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "powerhouse-switchboard",
"version": "0.0.1",
"description": "Open-source API over database models made to be developer- and analyst-friendly.",
"author": "makerdao",
"license": "AGPL-3",
"dependencies": {
},
"devDependencies": {
}
}

0 comments on commit 7e7c712

Please sign in to comment.