Skip to content

Commit

Permalink
add build and test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
harley-harris committed Dec 13, 2023
1 parent 955f257 commit cde1d6f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build and Test Checks

on: [pull_request]

jobs:
build-and-test:

runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'

- run: npm ci
- run: npm run build
- run: npm test

0 comments on commit cde1d6f

Please sign in to comment.