Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement CI #4

Merged
merged 1 commit into from
Sep 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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 run 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 run 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