Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
srnovus committed Nov 6, 2024
2 parents ed79cc4 + bae2dca commit b5cd42c
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 110 deletions.
16 changes: 0 additions & 16 deletions .github/fedired/test.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/workflows/ci.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .github/workflows/labeler.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/node.js.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/test-fedired.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Check Domain Status

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
check-domain:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Check domain status
run: |
echo "Checking domain status..."
STATUS=$(curl -Is https://fedired.com | head -n 1)
if [[ $STATUS == *"200"* ]]; then
echo "Domain is reachable"
else
echo "Warning: Domain is not reachable"
echo "Response: $STATUS"
fi
6 changes: 1 addition & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,9 @@
"js-yaml": "4.1.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@biomejs/cli-darwin-arm64": "1.8.3",
"@biomejs/cli-darwin-x64": "1.8.3",
"@biomejs/cli-linux-arm64": "1.8.3",
"@biomejs/cli-linux-x64": "1.8.3",
"@types/node": "20.16.2",
"execa": "9.3.1",
"pnpm": "9.9.0"
}
}

2 changes: 1 addition & 1 deletion packages/client/src/components/MkInstanceTicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function getInstanceIconErrorEvent($event) {
display: flex;
align-items: center;
block-size: 1.1em;
justify-self: flex-end;
justify-self: auto;
padding-block: 0.2em;
padding-inline: 0.4em;
border-radius: 100px;
Expand Down
4 changes: 2 additions & 2 deletions packages/client/src/components/note/MkNoteHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ function openServerInfo() {
<style lang="scss" scoped>
.kkwtjztg {
position: relative;
z-index: 2;
z-index: auto;
display: flex;
align-items: center;
white-space: nowrap;
justify-self: flex-end;
justify-self: auto;
border-radius: 100px;
font-size: 0.8em;
> .avatar {
Expand Down

0 comments on commit b5cd42c

Please sign in to comment.