Skip to content

update port info in readme #27

update port info in readme

update port info in readme #27

Workflow file for this run

name: Dead Space Pipeline
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
env:
CI: true # prevents watch mode in testing
MONGO_URL: mongodb://localhost/deadspace
strategy:
matrix:
node-version: [18.x, 20.x]
mongodb-version: ['4.4'] # this would run 4 jobs side by side.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js version ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Use MongoDB from GitHub Actions
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
- run: npm install
- run: npm run build --prefix client
- run: npm test