Skip to content

Commit

Permalink
ci: Implement CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kenowi-dev committed Sep 3, 2023
1 parent 91e7da5 commit 8cd94d9
Show file tree
Hide file tree
Showing 6 changed files with 345 additions and 42 deletions.
90 changes: 90 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
name: Karman Web CI

on:
pull_request:
push:
branches: [ main ]
tags: [ "*" ]


jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check Out Code
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: latest
- name: Install Dependencies
run: npm ci
- name: Run Type Checking
run: npm run check

test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check Out Code
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: latest
- name: Install Dependencies
run: npm ci
- name: Run Tests
run: npm test

build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check Out Code
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: latest
- name: Install Dependencies
run: npm ci
- name: Build
run: npm build
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: karman-web-build
path: ./build

publish:
name: Publish
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' }}
steps:
- name: Docker Meta
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/Karaoke-Manager/web
flavor: |
latest=false
tags: |
type=edge,enable={{is_default_branch}}
type=semver,pattern=v{{major}},enable=${{ !startsWith(github.ref, 'refs/tags/v0.') }}
type=semver,pattern=v{{major}}.{{minor}}
type=semver,pattern=v{{version}}
type=semver,pattern=latest
- name: Login To GitHub Container Registry
uses: docker/login-action@v2
with:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: ghcr.io
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
18 changes: 18 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM node:latest AS build

WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci

COPY . .
RUN npm run build

FROM node:latest
WORKDIR /app
COPY --from=build app/package.json app/package-lock.json ./
RUN npm ci --omit dev

COPY --from=build /app/build .

EXPOSE 3000
ENTRYPOINT ["node", "."]
Loading

0 comments on commit 8cd94d9

Please sign in to comment.