Skip to content

Commit

Permalink
Add CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gzuidhof committed Dec 8, 2023
1 parent 522d8b3 commit bcd503d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: SDK build and test

on:
push:
branches: [main]
pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "npm"
cache-dependency-path: "package-lock.json"
- name: "Install deps"
run: npm ci
- name: "Build"
run: npm run build:dist
-name: "Test"
run: npm t

0 comments on commit bcd503d

Please sign in to comment.