Skip to content
Draft
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
10 changes: 9 additions & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,16 @@ jobs:
- name: Docker setup
uses: docker/setup-buildx-action@v3

- name: Download Wasp build artifacts from linked PR
uses: wasp-lang/wasp/.github/actions/fetch-nightly-cli@main
with:
output-dir: ${{ runner.temp }}/wasp-cli
branch: main

- name: Install Wasp
run: curl -sSL https://get.wasp.sh/installer.sh | sh -s -- -v ${{ env.WASP_VERSION }}
run: >
curl -sSL https://get.wasp.sh/installer.sh
| sh -s -- -f ${{ runner.temp }}/wasp-cli/wasp-*.tar.gz

- name: Cache global node modules
uses: actions/cache@v4
Expand Down
8 changes: 4 additions & 4 deletions opensaas-sh/app_diff/package.json.diff
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
+ "env:pull": "npx dotenv-vault@latest pull development .env.server",
+ "env:push": "npx dotenv-vault@latest push development .env.server"
+ },
"dependencies": {
"@aws-sdk/client-s3": "^3.523.0",
"@aws-sdk/s3-presigned-post": "^3.750.0",
@@ -36,6 +41,7 @@
"workspaces": [
".wasp/build/*",
".wasp/out/*"
@@ -40,6 +45,7 @@
"react-apexcharts": "1.4.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.60.0",
Expand Down
4 changes: 4 additions & 0 deletions template/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"name": "opensaas",
"type": "module",
"workspaces": [
".wasp/build/*",
".wasp/out/*"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.523.0",
"@aws-sdk/s3-presigned-post": "^3.750.0",
Expand Down