Test and build
Test and Build / test-and-build (push) Failing after 1m31s

This commit is contained in:
Jay
2025-08-22 15:32:50 -04:00
parent 4c5222a037
commit 96078790ae
+30
View File
@@ -45,3 +45,33 @@ jobs:
# Install app dependencies # Install app dependencies
- name: Install app dependencies - name: Install app dependencies
run: npm install run: npm install
# Test wasm library
- name: Test wasm library
run: |
npm run test:wasm
npm run test:wasmdoc
# Build wasm library
- name: Build wasm library
run: |
npm run build:wasm
# Test application
- name: Test application
run: |
npm test
npx cypress run --component
# Build application
- name: Build application
run: |
npm run build
# Upload artifact
- name: Upload build artifact (for debugging)
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/
retention-days: 5