Skip to content

Commit

Permalink
fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mxsdev committed Sep 19, 2024
1 parent 0202acd commit 01b1ec8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,13 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
arch: [x64, arm64]
include:
- os: ubuntu-latest
osname: linux
- os: windows-latest
osname: win
- os: macos-latest
osname: macos
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -74,6 +81,15 @@ jobs:
name: localsandbox-${{ matrix.os }}-${{ matrix.arch }}
path: ./

- name: Extract artifact
run: tar -xzf localsandbox-${{ matrix.os }}-${{ matrix.arch }}.tar.gz

- name: List files
run: ls -la

- name: Run smoke tests
run: ./localsandbox --version

# Add your smoke test steps here

create-release:
Expand Down
1 change: 1 addition & 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 @@ -14,6 +14,7 @@
}
},
"scripts": {
"postinstall": "patch-package",
"test": "vitest",
"test:e2e": "cross-env TEST_AZURE_E2E=true vitest --testTimeout=20000 --dir=./test/parity",
"test:csharp": "npm run -w @localsandbox/csharp-test test",
Expand Down

0 comments on commit 01b1ec8

Please sign in to comment.