Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Refactor/move to delegated compute #920

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
07ce845
fix: unassign handler but root cause not diagnosed
0x4007 Dec 8, 2023
678dcb9
feat: switch logging to ubiquibot-logging NPM module
gitcoindev Dec 8, 2023
c4c5986
feat: enable pretty logs import with ubiquity-logger v0.3.0
gitcoindev Dec 8, 2023
3ca8fad
Merge pull request #60 from gitcoindev/refactor-general-with-npm-logging
0x4007 Dec 9, 2023
db96aca
feat: nft rewards
whilefoo Dec 11, 2023
06b3981
fix: remove console log
whilefoo Dec 11, 2023
99408aa
Merge remote-tracking branch 'pavlovcik/refactor/general' into nft-re…
whilefoo Dec 30, 2023
a703491
feat: update ubiquibot logger and fix start command
whilefoo Dec 31, 2023
626cae8
chore: almost done merging
0x4007 Jan 16, 2024
3014776
chore: merge
0x4007 Jan 16, 2024
841b18c
Merge branch 'ubiquity-whilefoo-nft-rewards' into refactor/move-to-de…
0x4007 Jan 16, 2024
eefbee9
feat: fix duplication price label issue
wannacfuture Jan 19, 2024
1060f00
Merge pull request #65 from wannacfuture/feat/fix-label-issues
0x4007 Jan 19, 2024
8aaf055
feat: fix build errors
wannacfuture Jan 22, 2024
19ec41c
feat: fix CI erros
wannacfuture Jan 23, 2024
f87a896
Update build.yml
wannacfuture Jan 23, 2024
136b11d
Update build.yml
wannacfuture Jan 23, 2024
73c5781
feat: minor change
wannacfuture Jan 23, 2024
fa4c9b9
Update build.yml
wannacfuture Jan 23, 2024
f16bf6d
feat: update build.yml
wannacfuture Jan 23, 2024
7fbd280
Update build.yml
wannacfuture Jan 23, 2024
d0d4230
feat: update build.yml
wannacfuture Jan 23, 2024
6b29125
Update build.yml
wannacfuture Jan 23, 2024
9d3c91c
feat: update
wannacfuture Jan 23, 2024
ed835da
Merge pull request #67 from wannacfuture/feat/fix-label-issues
0x4007 Jan 23, 2024
663138c
feat: remove axios call
wannacfuture Jan 29, 2024
beb5c9f
Merge pull request #68 from wannacfuture/refactor/remove-axios-call
0x4007 Jan 29, 2024
9bc1583
Revert "feat: remove axios call"
0x4007 Feb 2, 2024
e402d16
Merge pull request #69 from pavlovcik/revert-68-refactor/remove-axios…
0x4007 Feb 2, 2024
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
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,16 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Enable Corepack and Install Correct Yarn Version
run: |
corepack enable
yarn set version 4.0.2
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should remove the core pack stuff and use yarn 1.2 or whatever is the default.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agree. If I remember correctly it was a workaround from @wannacfuture and it had to be added to avoid an error but I do not remember the root cause for introducing this change.


- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "20.10.0"
cache: "yarn"

- name: Install
run: yarn install
Expand All @@ -23,7 +29,7 @@ jobs:
run: yarn build

- name: Lint
run: yarn lint
run: yarn format

run-migration:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"probot": "^12.2.4",
"smee-client": "^2.0.0",
"tsx": "^3.12.7",
"ubiquibot-logger": "^0.3.5",
"yaml": "^2.2.2",
"zlib": "^1.0.5"
},
Expand Down
2 changes: 1 addition & 1 deletion src/adapters/adapters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { createClient } from "@supabase/supabase-js";
import { Access } from "./supabase/helpers/tables/access";
import { Label } from "./supabase/helpers/tables/label";
import { Locations } from "./supabase/helpers/tables/locations";
import { Logs } from "./supabase/helpers/tables/logs";
import { Logs } from "ubiquibot-logger";
import { Settlement } from "./supabase/helpers/tables/settlement";
import { Super } from "./supabase/helpers/tables/super";
import { User } from "./supabase/helpers/tables/user";
Expand Down
188 changes: 0 additions & 188 deletions src/adapters/supabase/helpers/pretty-logs.ts

This file was deleted.

Loading
Loading