Skip to content

Commit

Permalink
Add automated node build/test
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbradley committed Feb 9, 2024
1 parent db3aa99 commit 54338f9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/node-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Python package

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm install
- run: npm run build
- run: npm run test

0 comments on commit 54338f9

Please sign in to comment.