Skip to content

Commit

Permalink
Adds CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
ericlamb committed Jul 18, 2023
1 parent 7688bb2 commit ec9351d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: '16'
- name: Install, Build, and Test
run: npm ci

0 comments on commit ec9351d

Please sign in to comment.