Skip to content
Open
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/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
with:
fetch-depth: 0
- uses: pnpm/action-setup@ac6db6d3c1f721f886538a378a2d73e85697340a # v6
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v6
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile

Check warning on line 28 in .github/workflows/bump-version.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" allows lifecycle scripts to run during package installation.

See more on https://sonarcloud.io/project/issues?id=pymthouse_builder-sdk&issues=AZ-BtDkLrfKKJdITbfg6&open=AZ-BtDkLrfKKJdITbfg6&pullRequest=47
- run: pnpm test
- run: pnpm build
- name: Configure Git
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: pnpm/action-setup@ac6db6d3c1f721f886538a378a2d73e85697340a # v6
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v6
with:
node-version: ${{ matrix.node }}
cache: pnpm
- run: pnpm install --frozen-lockfile

Check warning on line 23 in .github/workflows/ci.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" allows lifecycle scripts to run during package installation.

See more on https://sonarcloud.io/project/issues?id=pymthouse_builder-sdk&issues=AZ-BtDkZrfKKJdITbfg7&open=AZ-BtDkZrfKKJdITbfg7&pullRequest=47
- run: pnpm lint
- run: pnpm typecheck
- run: pnpm test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
languages: javascript-typescript
queries: security-extended
- uses: pnpm/action-setup@ac6db6d3c1f721f886538a378a2d73e85697340a # v6
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v6
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile

Check warning on line 29 in .github/workflows/codeql.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" allows lifecycle scripts to run during package installation.

See more on https://sonarcloud.io/project/issues?id=pymthouse_builder-sdk&issues=AZ-BtDkorfKKJdITbfg8&open=AZ-BtDkorfKKJdITbfg8&pullRequest=47
- run: pnpm run build
- uses: github/codeql-action/analyze@dc73d59c2d7bd4f8194098a91219eeee6d8a1719 # v4
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
with:
ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.tag || github.ref }}
- uses: pnpm/action-setup@ac6db6d3c1f721f886538a378a2d73e85697340a # v6
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v6
with:
node-version: 24
cache: pnpm
registry-url: "https://registry.npmjs.org"
scope: "@pymthouse"
package-manager-cache: false
- run: pnpm install --frozen-lockfile

Check warning on line 37 in .github/workflows/release.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" allows lifecycle scripts to run during package installation.

See more on https://sonarcloud.io/project/issues?id=pymthouse_builder-sdk&issues=AZ-BtDfKrfKKJdITbfg4&open=AZ-BtDfKrfKKJdITbfg4&pullRequest=47
- run: pnpm test
- run: pnpm build
- name: Verify package.json repository matches this repo
Expand All @@ -48,7 +48,7 @@
exit 1
fi
- name: Install npm CLI for trusted publishing
run: npm install -g npm@11.5.1

Check warning on line 51 in .github/workflows/release.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" allows lifecycle scripts to run during package installation.

See more on https://sonarcloud.io/project/issues?id=pymthouse_builder-sdk&issues=AZ-BtDfKrfKKJdITbfg5&open=AZ-BtDfKrfKKJdITbfg5&pullRequest=47
- name: Publish to npm via OIDC (trusted publishing)
# Use npm CLI (not pnpm publish): OIDC is implemented in npm, not pnpm.
# Do not set NODE_AUTH_TOKEN here — setup-node wires OIDC from id-token: write.
Expand Down