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
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ on:
- "docs/**"
- ".github/**/*.md"

permissions:
contents: read

concurrency:
# PRs key on the PR number so successive pushes cancel the prior
# run; pushes to main key on the ref so we never cancel a main
Expand Down Expand Up @@ -137,3 +140,21 @@ jobs:
# no-op until they do.
- name: Test
run: npm test --workspace ${{ matrix.workspace }} --if-present

preview:
name: preview package
if: github.event_name == 'pull_request'
needs: [package, example]
runs-on: ubuntu-24.04
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
filter: tree:0

- uses: ./.github/actions/install

- run: npm run build --workspaces --if-present

- run: npx pkg-pr-new publish --peerDeps ./packages/workspace
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
11 changes: 11 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@biomejs/biome": "^2.4.16",
"@types/node": "^25.9.1",
"esbuild": "^0.28.1",
"pkg-pr-new": "^0.0.75",
"postject": "^1.0.0-alpha.6",
"sherif": "^1.11.1",
"typescript": "^6.0.3"
Expand Down
Loading