Skip to content

Commit

Permalink
Fix GitHub workflow after organizing files
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsapps committed Mar 25, 2024
1 parent c53a70c commit 8997214
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"extensions": [
"ms-vscode.makefile-tools",
"golang.go",
"Vue.volar"
"Vue.volar",
"GitHub.vscode-github-actions"
]
}
},
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
go version
- name: Install deps
run: |
cd ./frontend
npm ci --legacy-peer-deps
cd ../server/src
go mod download
- name: Start database
run: |
Expand All @@ -37,6 +39,7 @@ jobs:
- name: Run tests
run: |
./hooks/pre-commit
cd ./server/src
go test github.com/dxe/adb/...
- name: Deploy image to ECR
if: ${{ github.event_name == 'push' }} # don't deploy branches
Expand Down

0 comments on commit 8997214

Please sign in to comment.