Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI

on:
pull_request:
branches:
- main

env:
NODE_VERSION: '22.5.1'

jobs:
lint-and-test:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Node and Dependencies
uses: ./.github/actions/setup-node-and-deps
with:
node-version: ${{ env.NODE_VERSION }}

- name: Lint
run: yarn lint
continue-on-error: true

- name: Run tests
run: yarn test
continue-on-error: true
207 changes: 0 additions & 207 deletions .github/workflows/deploy.yml

This file was deleted.

43 changes: 0 additions & 43 deletions Dockerfile

This file was deleted.

7 changes: 0 additions & 7 deletions Dockerfile.dev

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
-- CreateTable
CREATE TABLE "notifications" (
"id" TEXT NOT NULL PRIMARY KEY,
CREATE TABLE "public"."notifications" (
"id" TEXT NOT NULL,
"title" TEXT NOT NULL,
"body" TEXT NOT NULL,
"type" TEXT NOT NULL,
"sentAt" TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
"deliveredAt" TIMESTAMP,
"sentAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"deliveredAt" TIMESTAMP(3),
"userId" TEXT NOT NULL,
"swapId" TEXT
"swapId" TEXT,

CONSTRAINT "notifications_pkey" PRIMARY KEY ("id")
);
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Please do not edit this file manually
# It should be added in your version-control system (e.g., Git)
provider = "postgresql"
3 changes: 0 additions & 3 deletions apps/notifications-service/pulumi/Pulumi.yaml

This file was deleted.

53 changes: 0 additions & 53 deletions apps/notifications-service/pulumi/index.ts

This file was deleted.

9 changes: 0 additions & 9 deletions apps/notifications-service/pulumi/package.json

This file was deleted.

7 changes: 0 additions & 7 deletions apps/notifications-service/pulumi/tsconfig.json

This file was deleted.

Loading
Loading