Skip to content

Commit

Permalink
chore(ci): add github workflows for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ehrhart committed Aug 29, 2024
1 parent af042fb commit d7f8c47
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Install and test sparql-transformer

on: [push]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: use node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
- run: npm ci
- run: npm test

0 comments on commit d7f8c47

Please sign in to comment.