Skip to content

Commit

Permalink
chore(project): add github workflow as CI of Javascript sources
Browse files Browse the repository at this point in the history
  • Loading branch information
ThorbenLindhauer committed Sep 29, 2023
1 parent 726d855 commit 0bc9a6d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Continuous integration (node-js code)

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm ci
working-directory: common
- run: npm run build
working-directory: common
- run: npm test
working-directory: common

0 comments on commit 0bc9a6d

Please sign in to comment.