Skip to content

Commit

Permalink
test and deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
mxfactorial committed Jun 4, 2023
1 parent eeb64b3 commit 1522ed2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/dev-client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@ on:

jobs:
test:
name: test client
runs-on: ubuntu-latest
CI: true
steps:
- uses: actions/checkout@v3
- name: start services
run: make start
- name: e2e test client
run: make -C ./client test-ci
deploy:
name: deploy client
runs-on: ubuntu-latest
env:
Expand All @@ -17,7 +27,7 @@ jobs:
AWS_DEFAULT_REGION: us-east-1
CI: true
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: install dependencies
run: make install
working-directory: client
Expand Down
2 changes: 1 addition & 1 deletion client/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -170,4 +170,4 @@ date:
test-env-arg:
ifndef ENV
$(error trailing ENV assignment missing, e.g. make test ENV=dev)
endif
endif

0 comments on commit 1522ed2

Please sign in to comment.