Skip to content

Commit

Permalink
chore(ci): Create continuous integration and deployment piplines
Browse files Browse the repository at this point in the history
* Run `next lint` on pull requests
* Publish container images to ghcr.io
  • Loading branch information
hairmare committed Dec 19, 2024
1 parent 530253c commit c00802b
Show file tree
Hide file tree
Showing 6 changed files with 88 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release

on:
pull_request:
push:
branches:
- main
tags:
- 'v*.*.*'

jobs:
release-next-container:
uses: radiorabe/actions/.github/workflows/[email protected]
with:
image: 'ghcr.io/radiorabe/website-stack/next'
name: 'next'
display-name: 'RaBe Nextjs Website'
tags: 'rabe web nextjs alpine'
# the alpine base image used for the nextjs frontend does not have a
# keyless cosign signature, so we disable verifying the image.
cosign-verify: false
context: './next/'
dockerfile: './next/Dockerfile.prod'
build-args: |
IMAGES_HOSTNAME=*.rabe.ch
12 changes: 12 additions & 0 deletions .github/workflows/schedule.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Scheduled tasks

on:
schedule:
- cron: '13 12 * * *'
workflow_dispatch:

jobs:
schedule-trivy:
uses: radiorabe/actions/.github/workflows/[email protected]
with:
image-ref: 'ghcr.io/radiorabe/website-stack/next:latest'
41 changes: 41 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Test

on:
pull_request:

env:
IMAGES_HOSTNAME: "*"

jobs:
next-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 22
cache: yarn
cache-dependency-path: next/yarn.lock

- name: Install eslint (for easier rebasing, could be added to packages.json later)
working-directory: ./next
run: yarn add --dev eslint-config-next 'eslint@^8'

- name: Install dependencies
working-directory: ./next
run: yarn install --frozen-lockfile

- name: Running linter
working-directory: ./next
run: yarn run next lint --output-file ../next-eslint_report.json --format json
continue-on-error: true

- name: Annotate Code Linting Results
uses: ataylorme/eslint-annotate-action@v3
with:
report-json: "next-eslint_report.json"
only-pr-files: false
continue-on-error: true
3 changes: 3 additions & 0 deletions next/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["next", "next/typescript"]
}
6 changes: 6 additions & 0 deletions next/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ RUN \

# Rebuild the source code only when needed
FROM base AS builder

# defaults for use during the container build phase on CI/CD
ARG IMAGES_PROTOCOL=https
ARG IMAGES_HOSTNAME=**
ARG IMAGES_PORT=433

WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
Expand Down
1 change: 1 addition & 0 deletions next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"private": true,
"scripts": {
"dev": "next dev",
"lint": "next lint",
"build": "next build",
"start": "node .next/standalone/server.js",
"syncDataModel": "node bin/syncDataModel.js",
Expand Down

0 comments on commit c00802b

Please sign in to comment.