Skip to content

Ci/create release workflow #81

Ci/create release workflow

Ci/create release workflow #81

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
- dev
workflow_dispatch:
env:
EM_CACHE_FOLDER: "emsdk-cache"
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
# with:
# fetch-depth: 0
- name: Setup
uses: './.github/workflows/setup.yml'
- name: "Run build"
run: pnpm build
- name: "Run tests"
run: pnpm test:unit
- name: "Run linter"
run: pnpm clean && pnpm lint