Skip to content

Bump version to 0.7.0 #16

Bump version to 0.7.0

Bump version to 0.7.0 #16

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: npm
- run: npm ci
- run: npm run typecheck
- run: npm run build
- name: Verify dist artifacts
run: |
test -f server/dist/index.js
test -f client/dist/index.html
- name: Smoke test npm pack
run: npm pack --dry-run
- uses: actions/upload-artifact@v7
with:
name: dist
path: |
server/dist
client/dist
retention-days: 7