Skip to content

Bump testcontainers add test #525

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
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
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
- run: find -type f -name "restatedev-restate-sdk-[0-9.]*\.tgz" | xargs -I {} mv {} restatedev-restate-sdk.tgz
- run: find -type f -name "restatedev-restate-sdk-clients-[0-9.]*\.tgz" | xargs -I {} mv {} restatedev-restate-sdk-clients.tgz
- run: find -type f -name "restatedev-restate-sdk-core-[0-9.]*\.tgz" | xargs -I {} mv {} restatedev-restate-sdk-core.tgz
- run: find -type f -name "restatedev-restate-sdk-testcontainers-[0-9.]*\.tgz" | xargs -I {} mv {} restatedev-restate-sdk-testcontainers.tgz
- run: find -type f -name "restatedev-restate-sdk-zod-[0-9.]*\.tgz" | xargs -I {} mv {} restatedev-restate-sdk-zod.tgz
- run: find -type f -name "restatedev-restate-sdk-cloudflare-workers-[0-9.]*\.tgz" | xargs -I {} mv {} restatedev-restate-sdk-cloudflare-workers.tgz
- uses: actions/upload-artifact@v4
with:
name: restatedev-restate-sdk
Expand All @@ -48,6 +51,24 @@ jobs:
path: restatedev-restate-sdk-core.tgz
retention-days: 1
if-no-files-found: error
- uses: actions/upload-artifact@v4
with:
name: restatedev-restate-sdk-testcontainers
path: restatedev-restate-sdk-testcontainers.tgz
retention-days: 1
if-no-files-found: error
- uses: actions/upload-artifact@v4
with:
name: restatedev-restate-sdk-zod
path: restatedev-restate-sdk-zod.tgz
retention-days: 1
if-no-files-found: error
- uses: actions/upload-artifact@v4
with:
name: restatedev-restate-sdk-cloudflare-workers
path: restatedev-restate-sdk-cloudflare-workers.tgz
retention-days: 1
if-no-files-found: error

- name: Publish snapshot
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
Expand All @@ -71,6 +92,7 @@ jobs:
set "@restatedev/restate-sdk-cloudflare-workers"
set "@restatedev/restate-sdk-clients"
set "@restatedev/restate-sdk-testcontainers"
set "@restatedev/restate-sdk-zod"
npm --workspaces update
# We use dist-tag dev for the snapshot releases, see https://docs.npmjs.com/cli/v9/commands/npm-dist-tag for more info
# A snapshot MUST not be published with latest tag (omitting --tag defaults to latest) to avoid users to install snapshot releases
Expand Down
Loading