Skip to content

Commit

Permalink
Merge pull request #541 from webcat12345/add-ci
Browse files Browse the repository at this point in the history
ci(actions): Add library and app build
  • Loading branch information
cmckni3 authored Jan 31, 2025
2 parents a1f4851 + e8f5378 commit ab83952
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Install and Build 🔧
run: |
npm ci
npm run build_lib
npm run build

0 comments on commit ab83952

Please sign in to comment.