Feature/33 api fails when no pilots or logbook entries #35

Merged
noahspannbauer merged 85 commits from feature/33-api-fails-when-no-pilots-or-logbook-entries into main 2025-02-02 18:24:48 -05:00
4 changed files with 6 additions and 7 deletions
Showing only changes of commit 8705454595 - Show all commits

View File

@@ -16,6 +16,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
sparse-checkout: |
api
- name: 'Setup Node'
uses: actions/setup-node@v4
@@ -23,12 +26,10 @@ jobs:
node-version: ${{ vars.NODE_VERSION }}
- name: Install
working-directory: api
run: |
npm install
- name: Build
working-directory: api
run: |
npm run build

View File

@@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v4
with:
sparse-checkout: |
./api
app
- name: 'Setup Node'
uses: actions/setup-node@v4
@@ -25,12 +25,10 @@ jobs:
node-version: ${{ vars.NODE_VERSION }}
- name: Install
working-directory: app
run: |
npm install
- name: Build
working-directory: app
run: |
npm run build

View File

@@ -1,6 +1,6 @@
{
"name": "@noahspan/flying-api",
"version": "0.0.7",
"version": "0.0.8",
"description": "",
"author": "",
"private": true,

View File

@@ -1,7 +1,7 @@
{
"name": "@noahspan/flying-app",
"private": true,
"version": "0.0.3",
"version": "0.0.4",
"type": "module",
"scripts": {
"dev": "vite",