Skip to content

Commit

Permalink
fix install
Browse files Browse the repository at this point in the history
  • Loading branch information
indrif committed Nov 15, 2024
1 parent 67f1dec commit 41671a9
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: Test backend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ./.github/actions/setup-node-using-nvm

Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/pr-title.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Check PR title

on:
pull_request:
types:
- opened
- reopened
- edited
- synchronize

defaults:
run:
shell: bash

jobs:
checks:
name: Check PR title
runs-on: ubuntu-latest

steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
"start:backend": "cd packages/backend && npm run start:dev",
"start:frontend": "cd packages/frontend && npm run dev",
"start": "npm run support && concurrently \"npm run start:backend\" \"npm run start:frontend\" \"npm run nodemon\"",
"support": "docker compose up -d database",
"postinstall": "test \"$SKIP_POSTINSTALL\" = \"true\" || husky install"
"support": "docker compose up -d database"
},
"devDependencies": {
"concurrently": "^8.2.2",
Expand Down

0 comments on commit 41671a9

Please sign in to comment.