Skip to content

Commit

Permalink
adding GitHub Node workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jgphilpott committed Sep 16, 2024
1 parent aa04718 commit 3fd0bb8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Node CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

- name: Install Dependencies
run: npm install

- name: Run Tests
run: npm test

0 comments on commit 3fd0bb8

Please sign in to comment.