Skip to content

Commit

Permalink
Create npm package (#3)
Browse files Browse the repository at this point in the history
* wip: create server npm package

* chore: github actions

* chore: use server in electron app

* chore: format

* chore: actions

* chore: actions

* chore: copy server to electron app to make the desktop app
  • Loading branch information
rboixaderg authored Jan 15, 2024
1 parent 866b425 commit a627a43
Show file tree
Hide file tree
Showing 75 changed files with 5,175 additions and 1,412 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,35 @@ jobs:
run: npm install
working-directory: electron-app

- name: install dependencies
run: npm install
working-directory: server

- name: lint/format
env:
CI: false
run: npm run ci:format
working-directory: electron-app

- name: lint/format
env:
CI: false
run: npm run ci:format
working-directory: server

- name: test
env:
CI: false
run: npm run test
working-directory: electron-app
working-directory: server

- name: compile server
env:
CI: false
run: npm run compile
working-directory: server

- name: build
env:
CI: false
run: npm run make
working-directory: electron-app
run: npm run make
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.vscode
.DS_Store
.DS_Store
.yarn
3 changes: 2 additions & 1 deletion electron-app/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,5 @@ http_server
.nuclia
.DS_Store

build
build
src/sync-agent
Loading

0 comments on commit a627a43

Please sign in to comment.