Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/RizkyRajitha/linkin
Browse files Browse the repository at this point in the history
  • Loading branch information
RizkyRajitha committed Jun 9, 2024
2 parents 65bad45 + 2fcc4fc commit 62686b5
Show file tree
Hide file tree
Showing 6 changed files with 8,183 additions and 7,795 deletions.
109 changes: 0 additions & 109 deletions .github/workflows/browsertesting.yml

This file was deleted.

8 changes: 2 additions & 6 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,14 @@ jobs:
# Maps tcp port 5432 on service container to the host
- 5432:5432

# strategy:
# matrix:
# node-version: [14.x]

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Node.js 14.x
- name: Set up Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 14.x
node-version: 18.x

- name: Cache node modules
uses: actions/cache@v2
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG DATABASE_URL
ARG HASHSALT
ARG RAILWAY=0
# Install dependencies only when needed
FROM node:alpine AS deps
FROM node:18-alpine AS deps
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.

ENV NEXT_TELEMETRY_DISABLED 1
Expand All @@ -16,7 +16,7 @@ RUN npm ci


# Rebuild the source code only when needed
FROM node:alpine AS builder
FROM node:18-alpine AS builder

ARG DATABASE_URL
ARG RAILWAY=0
Expand All @@ -38,7 +38,7 @@ RUN npm run build-next
#&& yarn install --production --ignore-scripts --prefer-offline

# Production image, copy all the files and run next
FROM node:alpine AS runner
FROM node:18-alpine AS runner

ARG DATABASE_URL
ARG HASHSALT
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img width="400" height="400" alt="Linkin logo" src="https://user-images.githubusercontent.com/38534289/119221855-0522c380-bb0f-11eb-8fee-c335fd0ff67c.png">
</p>

# Linkin &middot; [![DeepScan grade](https://deepscan.io/api/teams/14086/projects/17178/branches/386441/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=14086&pid=17178&bid=386441) [![codecov](https://codecov.io/gh/RizkyRajitha/linkin/branch/master/graph/badge.svg?token=DPE3YVUYUW)](https://codecov.io/gh/RizkyRajitha/linkin) ![license](https://img.shields.io/github/license/rizkyrajitha/linkin??style=plastic) ![Github Actions](https://github.com/rizkyrajitha/linkin/workflows/Code-Coverage/badge.svg)
# Linkin &middot; [![DeepScan grade](https://deepscan.io/api/teams/14086/projects/17178/branches/386441/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=14086&pid=17178&bid=386441) [![codecov](https://codecov.io/gh/RizkyRajitha/linkin/branch/master/graph/badge.svg?token=DPE3YVUYUW)](https://codecov.io/gh/RizkyRajitha/linkin) ![license](https://img.shields.io/github/license/rizkyrajitha/linkin??style=plastic) [![Code Coverage](https://github.com/RizkyRajitha/linkin/actions/workflows/coverage.yml/badge.svg?branch=master)](https://github.com/RizkyRajitha/linkin/actions/workflows/coverage.yml)

## Linkin is a customizable self-hosted link tree application.

Expand Down
Loading

0 comments on commit 62686b5

Please sign in to comment.