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/squad-insider-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 22

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs

- name: Read version from package.json
id: version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/squad-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
echo "✅ Version $VERSION validated in CHANGELOG.md"

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs

- name: Check no .ai-team/ or .squad/ files are tracked
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/squad-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 22

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs

- name: Validate version consistency
run: |
Expand Down
2 changes: 1 addition & 1 deletion .squad-templates/workflows/squad-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
node-version: 22

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs
2 changes: 1 addition & 1 deletion .squad-templates/workflows/squad-insider-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 22

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs

- name: Read version from package.json
id: version
Expand Down
2 changes: 1 addition & 1 deletion .squad-templates/workflows/squad-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
echo "✅ Version $VERSION validated in CHANGELOG.md"

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs

- name: Check no .ai-team/ or .squad/ files are tracked
run: |
Expand Down
2 changes: 1 addition & 1 deletion .squad-templates/workflows/squad-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 22

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs

- name: Validate version consistency
run: |
Expand Down
2 changes: 1 addition & 1 deletion packages/squad-cli/templates/workflows/squad-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
node-version: 22

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 22

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs

- name: Read version from package.json
id: version
Expand Down
2 changes: 1 addition & 1 deletion packages/squad-cli/templates/workflows/squad-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
echo "✅ Version $VERSION validated in CHANGELOG.md"

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs

- name: Check no .ai-team/ or .squad/ files are tracked
run: |
Expand Down
2 changes: 1 addition & 1 deletion packages/squad-cli/templates/workflows/squad-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 22

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs

- name: Validate version consistency
run: |
Expand Down
2 changes: 1 addition & 1 deletion packages/squad-sdk/templates/workflows/squad-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
node-version: 22

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 22

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs

- name: Read version from package.json
id: version
Expand Down
2 changes: 1 addition & 1 deletion packages/squad-sdk/templates/workflows/squad-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
echo "✅ Version $VERSION validated in CHANGELOG.md"

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs

- name: Check no .ai-team/ or .squad/ files are tracked
run: |
Expand Down
2 changes: 1 addition & 1 deletion packages/squad-sdk/templates/workflows/squad-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 22

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs

- name: Validate version consistency
run: |
Expand Down
2 changes: 1 addition & 1 deletion templates/workflows/squad-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
node-version: 22

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs
2 changes: 1 addition & 1 deletion templates/workflows/squad-insider-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 22

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs

- name: Read version from package.json
id: version
Expand Down
2 changes: 1 addition & 1 deletion templates/workflows/squad-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
echo "✅ Version $VERSION validated in CHANGELOG.md"

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs

- name: Check no .ai-team/ or .squad/ files are tracked
run: |
Expand Down
2 changes: 1 addition & 1 deletion templates/workflows/squad-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 22

- name: Run tests
run: node --test test/*.test.js
run: node --test test/*.test.cjs

- name: Validate version consistency
run: |
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading