Skip to content

Commit

Permalink
npm run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
d-led committed Jun 5, 2024
1 parent 47e2d17 commit b5671bd
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 21 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,22 @@ name: Docker

on:
schedule:
- cron: '41 22 * * *'
- cron: "41 22 * * *"
push:
branches: [ "main" ]
branches: ["main"]
# Publish semver tags as releases.
tags: [ 'v*.*.*' ]
tags: ["v*.*.*"]
pull_request:
branches: [ "main" ]
branches: ["main"]

env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}


jobs:
build:

runs-on: ubuntu-latest
permissions:
contents: read
Expand All @@ -43,7 +41,7 @@ jobs:
if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 #v3.5.0
with:
cosign-release: 'v2.2.4'
cosign-release: "v2.2.4"

# Set up BuildKit Docker container builder to be able to build
# multi-platform images and export cache
Expand Down
27 changes: 13 additions & 14 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,26 @@ name: Go Tests

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

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"

- name: Build
run: ./scripts/build-binary-embed-ui.sh
- name: Build
run: ./scripts/build-binary-embed-ui.sh

- name: Unit Test
run: ./scripts/test-unit.sh
- name: Unit Test
run: ./scripts/test-unit.sh

- name: API Test
run: ./scripts/test-api.sh
- name: API Test
run: ./scripts/test-api.sh

0 comments on commit b5671bd

Please sign in to comment.