chore(deps-dev): bump @sveltejs/kit from 2.53.4 to 2.57.1 in /examples/encrypted_chat/frontend #142
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: examples-encrypted-chat | |
| permissions: {} | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| paths: | |
| - examples/encrypted_chat/** | |
| - .github/workflows/provision-darwin.sh | |
| - .github/workflows/provision-linux.sh | |
| - .github/workflows/examples-encrypted-chat.yml | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| examples-encrypted-chat-rust-darwin: | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - name: Provision Darwin | |
| run: | | |
| bash .github/workflows/provision-darwin.sh | |
| - name: Backend Tests Encrypted Chat Rust Darwin | |
| run: | | |
| set -eExuo pipefail | |
| cd examples/encrypted_chat/rust/backend | |
| cargo build --release --target wasm32-unknown-unknown && cargo test | |
| examples-encrypted-chat-rust-linux: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - name: Provision Linux | |
| run: bash .github/workflows/provision-linux.sh | |
| - name: Backend Tests Encrypted Chat Rust Linux | |
| run: | | |
| set -eExuo pipefail | |
| cd examples/encrypted_chat/rust/backend | |
| cargo build --release --target wasm32-unknown-unknown && cargo test |