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
3 changes: 3 additions & 0 deletions .github/workflows/controlplane-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ jobs:
- name: Generate email templates
run: pnpm run --filter ./controlplane/emails build

- name: Lint & format
run: pnpm run --filter ./controlplane/ lint:fix
Comment thread
comatory marked this conversation as resolved.

- uses: ./.github/actions/git-dirty-check
with:
package-name: controlplane
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/studio-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@ jobs:
- name: Generate code
run: pnpm buf generate --template buf.ts.gen.yaml

# - name: Lint
# run: pnpm run --filter studio lint:fix
Comment thread
comatory marked this conversation as resolved.

- uses: ./.github/actions/git-dirty-check
with:
package-name: studio

- name: Build
run: pnpm run --filter ./studio --filter ./connect --filter ./shared --filter ./composition build

- name: Lint
run: pnpm run --filter studio lint

- name: Test
run: pnpm run --filter studio test:coverage

Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ logs
CHANGELOG.md
CHANGELOG
.husky
**/testdata
4 changes: 2 additions & 2 deletions controlplane/emails/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"type": "module",
"scripts": {
"dev": "email dev --dir src --port 3400",
"build": "email export --dir src --outDir ../src/templates/emails --pretty && pnpm run --filter ../ lint:fix",
"build": "email export --dir src --outDir ../src/templates/emails --pretty",
"format": "prettier -w .",
"lint:fix": "eslint --cache --fix --ext .ts,.mjs,.cjs . && pnpm format"
"lint:fix": "eslint --cache --fix --ext .ts,.tsx,.mjs,.cjs . && pnpm format"
},
"author": {
"name": "WunderGraph Maintainers",
Expand Down
2 changes: 2 additions & 0 deletions shared/.prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
CHANGELOG.md
test/__snapshots__
test/testdata/*
Loading