Skip to content

Merge pull request #6 from kushal1o1/feat/Deletion issue ref(#5) #10

Merge pull request #6 from kushal1o1/feat/Deletion issue ref(#5)

Merge pull request #6 from kushal1o1/feat/Deletion issue ref(#5) #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm run typecheck
- run: npm run lint
- run: npm run build
check-worker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
working-directory: workers/signaling
- run: npm run typecheck
working-directory: workers/signaling