typescript fixes & github action to build server

This commit is contained in:
Cogent Apps
2023-03-14 20:25:54 +00:00
parent 6296d98911
commit 633630807d
3 changed files with 13 additions and 8 deletions

View File

@@ -4,8 +4,13 @@ on:
branches:
- '*'
jobs:
deploy-webapp:
build-webapp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- run: cd app && npm install && npm run build
- run: cd app && npm install && npm run build
build-server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- run: cd server && npm install && npx -y tsc