Skip to content

Commit

Permalink
Add automated testing infrastructure
Browse files Browse the repository at this point in the history
Goal is to have tests run as part of PRs so we can have more confidence in our changes.
  • Loading branch information
chasenlehara committed Aug 17, 2024
1 parent 3fa4d7c commit 8406745
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/verify-build-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Verify/Build/Deploy

on:
push:
branches: [master]
pull_request:

jobs:
job:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"

- name: Install
run: npm install

- name: test
run: npm run test
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20

0 comments on commit 8406745

Please sign in to comment.