Move types to dedicated file #22
Workflow file for this run
This file contains 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: Unit Tests | |
on: [pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [21.x] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm ci | |
working-directory: server/ | |
- name: Set up environment variables | |
run: | | |
mkdir private_key | |
echo "${{ secrets.SERVICE_ACCOUNT_SECRET }}" > private_key/private.json | |
working-directory: server/src | |
- name: Compile TypeScript files | |
run: npx tsc | |
working-directory: server/ | |
- name: Start index.ts in background | |
run: npm start & | |
working-directory: server/ | |
- name: Wait for server to start | |
run: sleep 5 # Adjust sleep time as needed to allow the server to start | |
timeout-minutes: 1 | |
- name: Run tests | |
run: npm test | |
working-directory: server/ |