Skip to content

chore(deps): bump @hono/node-server from 1.8.0 to 1.10.1 (#62) #24

chore(deps): bump @hono/node-server from 1.8.0 to 1.10.1 (#62)

chore(deps): bump @hono/node-server from 1.8.0 to 1.10.1 (#62) #24

Workflow file for this run

name: Master
on:
push:
branches:
- master
jobs:
ci:
name: Check
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- name: Install pnpm
uses: pnpm/action-setup@v2
id: pnpm-install
with:
version: latest
run_install: false
- name: Install dependencies
run: pnpm install
- name: Lint check
run: pnpm lint:check
- name: Build
run: pnpm build
- name: Run Tests
run: pnpm test:coverage
- name: Send coverage report to Codecov
uses: codecov/codecov-action@v3
cd:
name: CD
needs:
- ci
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
flavor: |
latest=false
tags: |
type=edge
type=sha
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}