Skip to content

Commit

Permalink
setup basics
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanLovely committed Nov 27, 2023
1 parent 6197340 commit 27af3f8
Show file tree
Hide file tree
Showing 10 changed files with 9,984 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Main

on:
- push

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18

- name: Install dependencies
run: npm ci

- name: Build
run: npm run build
4 changes: 4 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.0.0"
}
Loading

0 comments on commit 27af3f8

Please sign in to comment.