diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 36b6116d..2d92abd9 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -27,44 +27,15 @@ jobs: - name: Install firebase globallt run: npm install -g firebase-tools - tsc: - needs: build-and-deploy - runs-on: ubuntu-latest - - steps: - - name: Move to app - run: ls - - - name: TypeScript compile + - name: TS Compile run: npm run tsc - generate-docs: - needs: tsc - runs-on: ubuntu-latest - - steps: - - name: Move to app - run: cd app - - name: Generate documentation run: npx typedoc - deploy-docs: - needs: generate-docs - runs-on: ubuntu-latest - - steps: - name: Deploy documentation run: firebase deploy --token ${{ secrets.FIREBASE_TOKEN }} - npm-publish: - needs: deploy-docs - runs-on: ubuntu-latest - - steps: - - name: Move to app - run: cd app - - name: Publish to NPM run: npm publish env: