Milestone - install dependencies
Test and Build / test-and-build (push) Successful in 1m32s

This commit is contained in:
Jay
2025-08-22 15:26:27 -04:00
parent f0485b08f4
commit 718a230759
+13 -9
View File
@@ -17,27 +17,31 @@ jobs:
ssh-known-hosts: '${{ secrets.SSH_KNOWN_HOST }}' ssh-known-hosts: '${{ secrets.SSH_KNOWN_HOST }}'
# Install Cypress dependencies # Install Cypress dependencies
# - name: Install Cypress dependencies - name: Install Cypress dependencies
# run: | run: |
# sudo apt-get update sudo apt-get update
# sudo apt-get install -y libgtk2.0-0t64 libgtk-3-0t64 libgbm-dev libnotify-dev libnss3 libxss1 libasound2t64 libxtst6 xauth xvfb sudo apt-get install -y libgtk2.0-0t64 libgtk-3-0t64 libgbm-dev libnotify-dev libnss3 libxss1 libasound2t64 libxtst6 xauth xvfb
# Install Node.js # Install node.js
- name: Setup Node.js - name: Setup Node.js
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: "24" node-version: "24"
# Install rust toolchain # Install rust
- name: Install Rust - name: Install Rust
run: | run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
export PATH=/root/.cargo/bin:$PATH export PATH=$HOME/.cargo/bin:$PATH
rustc --version rustc --version
cargo --version cargo --version
# Install wasm-pack
- name: Install Rust
run: |
npm install -g wasm-pack npm install -g wasm-pack
wasm-pack --version wasm-pack --version
# Install app dependencies # Install app dependencies
# - name: Install app dependencies - name: Install app dependencies
# run: npm install run: npm install