Add missing render-wasm to the ci workflow

This commit is contained in:
Andrey Antukh 2025-11-27 11:16:36 +01:00 committed by Belén Albeza
parent b23e0c0642
commit 74d00473e9
1 changed files with 24 additions and 2 deletions

View File

@ -8,8 +8,6 @@ on:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
push:
branches:
@ -91,6 +89,30 @@ jobs:
run: |
yarn run lint:scss;
test-render-wasm:
name: "Render WASM Tests"
runs-on: ubuntu-24.04
container: penpotapp/devenv:latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Format
working-directory: ./render-wasm
run: |
cargo fmt --check
- name: Lint
working-directory: ./render-wasm
run: |
./lint
- name: Test
working-directory: ./render-wasm
run: |
./test
test-backend:
name: "Backend Tests"
runs-on: ubuntu-24.04