Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
pull_request_created:
if: github.event_name == 'pull_request' && github.event.action == 'opened' || github.event.action == 'reopened'
if: github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'reopened')
runs-on: ubuntu-latest
steps:
- name: Discord Webhook Action
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
.vscode/
node_modules/

# Only pnpm-lock.yaml at the root is committed; other lockfiles are mistakes.
package-lock.json
yarn.lock
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,14 @@ cd ssa

### 2. Install dependencies

Install dependencies for each package separately:
This repo is a pnpm workspace — run a single install at the root and pnpm will handle both packages:

```bash
cd web && pnpm install
cd ../cms && pnpm install
pnpm install
```

> Use pnpm only. `npm install` and `yarn install` are not supported and will produce a broken `node_modules/`.

### 3. Configure environment variables

Copy the example env file in the CMS and fill in your values:
Expand Down
Loading