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/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ permissions:

jobs:
release:
if: ${{ github.event.inputs.snapshot == 'false' }}
if: ${{ github.event.inputs.snapshot != 'true' }}
name: Release
runs-on: ubuntu-latest
steps:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:

- name: Prettier
run: pnpm format:check

- name: Type check
run: pnpm type:check

- name: Throws check
run: pnpm throws:check
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@
"format": "prettier --write src examples/**/*.ts",
"format:check": "prettier --check src examples/**/*.ts",
"throws:check": "pnpm --package=@livekit/throws-transformer dlx throws-check 'src/!(*.test).ts' 'src/**/!(*.test).ts'",
"ci:publish": "pnpm build:clean && pnpm compat && changeset publish",
"type:check": "tsc --noEmit",
"ci:publish": "pnpm type:check && pnpm build && pnpm compat && changeset publish",
"downlevel-dts": "downlevel-dts ./dist/src ./dist/ts4.2 --to=4.2",
"compat": "eslint --config ./eslint.config.dist.mjs --no-inline-config ./dist/livekit-client.esm.mjs",
"size-limit": "size-limit"
Expand Down
Loading