Skip to content

Commit

Permalink
test(ci): build docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
chengpeiquan committed Oct 3, 2024
1 parent 3c91133 commit 54cc85a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: build-and-deploy

on:
push:
pull_request:
branches: [feat/v2]

jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
ref: feat/v2
- name: install deps
run: |
npm i -g pnpm
pnpm install
- name: build docker image
run: |
docker compose build

0 comments on commit 54cc85a

Please sign in to comment.