feat(wisp): move backend to managed wisp-server-python #394
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI-Win | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '20.8.0' | |
| - name: Install Wisp Python | |
| run: python -m pip install --upgrade pip wisp-python | |
| - name: Install dependencies | |
| run: npm run fresh-install | |
| - name: Build libraries | |
| run: npm run build | |
| - name: Start server | |
| run: npm run workflow-test | |
| - name: Test server response | |
| run: npm test | |
| - name: Stop server after testing | |
| run: npm stop |