Feature/33 api fails when no pilots or logbook entries #35
5
.github/workflows/api.yaml
vendored
5
.github/workflows/api.yaml
vendored
@@ -16,6 +16,9 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
sparse-checkout: |
|
||||||
|
api
|
||||||
|
|
||||||
- name: 'Setup Node'
|
- name: 'Setup Node'
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
@@ -23,12 +26,10 @@ jobs:
|
|||||||
node-version: ${{ vars.NODE_VERSION }}
|
node-version: ${{ vars.NODE_VERSION }}
|
||||||
|
|
||||||
- name: Install
|
- name: Install
|
||||||
working-directory: api
|
|
||||||
run: |
|
run: |
|
||||||
npm install
|
npm install
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: api
|
|
||||||
run: |
|
run: |
|
||||||
npm run build
|
npm run build
|
||||||
|
|
||||||
|
|||||||
4
.github/workflows/app.yaml
vendored
4
.github/workflows/app.yaml
vendored
@@ -17,7 +17,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
sparse-checkout: |
|
sparse-checkout: |
|
||||||
./api
|
app
|
||||||
|
|
||||||
- name: 'Setup Node'
|
- name: 'Setup Node'
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
@@ -25,12 +25,10 @@ jobs:
|
|||||||
node-version: ${{ vars.NODE_VERSION }}
|
node-version: ${{ vars.NODE_VERSION }}
|
||||||
|
|
||||||
- name: Install
|
- name: Install
|
||||||
working-directory: app
|
|
||||||
run: |
|
run: |
|
||||||
npm install
|
npm install
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: app
|
|
||||||
run: |
|
run: |
|
||||||
npm run build
|
npm run build
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@noahspan/flying-api",
|
"name": "@noahspan/flying-api",
|
||||||
"version": "0.0.7",
|
"version": "0.0.8",
|
||||||
"description": "",
|
"description": "",
|
||||||
"author": "",
|
"author": "",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@noahspan/flying-app",
|
"name": "@noahspan/flying-app",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.0.3",
|
"version": "0.0.4",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
Reference in New Issue
Block a user