Skip to content

Commit

Permalink
feat: add lint
Browse files Browse the repository at this point in the history
chore: use .yml
  • Loading branch information
jurienhamaker committed Sep 23, 2024
1 parent 4f015a4 commit f2a3dfc
Show file tree
Hide file tree
Showing 5 changed files with 178 additions and 148 deletions.
22 changes: 22 additions & 0 deletions .github/actions/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: 'Lint: Affected'

on:
workflow_call:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- run: yarn install --frozen-lockfile

- uses: nrwl/nx-set-shas@v4

- run: npx nx-cloud record -- nx format:check
- run: npx nx affected -t lint
76 changes: 39 additions & 37 deletions .github/workflows/hoshi.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,46 @@
name: 'Hoshi: Build & Deploy docker image'

on:
push:
branches: ['main']
paths: ['apps/hoshi/**', 'libs/**', 'Dockerfile.hoshi']
workflow_dispatch:
push:
branches: ['main']
paths: ['apps/hoshi/**', 'libs/**', 'Dockerfile.hoshi']
workflow_dispatch:

env:
REGISTRY: ghcr.io
IMAGE_NAME: jurienhamaker/hoshi
REGISTRY: ghcr.io
IMAGE_NAME: jurienhamaker/hoshi

jobs:
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

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

- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
file: ./Dockerfile.hoshi
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- uses: ./.github/actions/lint.yml

- name: Checkout repository
uses: actions/checkout@v3

- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
file: ./Dockerfile.hoshi
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
76 changes: 39 additions & 37 deletions .github/workflows/kazu.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,46 @@
name: 'Kazu: Build & Deploy docker image'

on:
push:
branches: ['main']
paths: ['apps/kazu/**', 'libs/**', 'Dockerfile.kazu']
workflow_dispatch:
push:
branches: ['main']
paths: ['apps/kazu/**', 'libs/**', 'Dockerfile.kazu']
workflow_dispatch:

env:
REGISTRY: ghcr.io
IMAGE_NAME: jurienhamaker/kazu
REGISTRY: ghcr.io
IMAGE_NAME: jurienhamaker/kazu

jobs:
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

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

- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
file: ./Dockerfile.kazu
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- uses: ./.github/actions/lint.yml

- name: Checkout repository
uses: actions/checkout@v3

- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
file: ./Dockerfile.kazu
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
76 changes: 39 additions & 37 deletions .github/workflows/koto.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,46 @@
name: 'Koto: Build & Deploy docker image'

on:
push:
branches: ['main']
paths: ['apps/koto/**', 'libs/**', 'Dockerfile.koto']
workflow_dispatch:
push:
branches: ['main']
paths: ['apps/koto/**', 'libs/**', 'Dockerfile.koto']
workflow_dispatch:

env:
REGISTRY: ghcr.io
IMAGE_NAME: jurienhamaker/koto
REGISTRY: ghcr.io
IMAGE_NAME: jurienhamaker/koto

jobs:
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

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

- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
file: ./Dockerfile.koto
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- uses: ./.github/actions/lint.yml

- name: Checkout repository
uses: actions/checkout@v3

- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
file: ./Dockerfile.koto
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
76 changes: 39 additions & 37 deletions .github/workflows/kusari.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,46 @@
name: 'Kusari: Build & Deploy docker image'

on:
push:
branches: ['main']
paths: ['apps/kusari/**', 'libs/**', 'Dockerfile.kusari']
workflow_dispatch:
push:
branches: ['main']
paths: ['apps/kusari/**', 'libs/**', 'Dockerfile.kusari']
workflow_dispatch:

env:
REGISTRY: ghcr.io
IMAGE_NAME: jurienhamaker/kusari
REGISTRY: ghcr.io
IMAGE_NAME: jurienhamaker/kusari

jobs:
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

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

- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
file: ./Dockerfile.kusari
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- uses: ./.github/actions/lint.yml

- name: Checkout repository
uses: actions/checkout@v3

- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
file: ./Dockerfile.kusari
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit f2a3dfc

Please sign in to comment.