Skip to content

docs: align Launcher README with current deployment #15

docs: align Launcher README with current deployment

docs: align Launcher README with current deployment #15

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main]
jobs:
build-and-test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node 20
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
- name: Install dependencies
run: npm install
- name: Build
run: |
if node -e "const p=require('./package.json');process.exit(p.scripts&&p.scripts.build?0:1)"; then
npm run build
else
echo "No build script found, skipping"
fi
- name: Test
env:
CI: true
run: |
if node -e "const p=require('./package.json');process.exit(p.scripts&&p.scripts.test?0:1)"; then
npm test -- --passWithNoTests
else
echo "No test script found, skipping"
fi