Ci/create release workflow #83
Workflow file for this run
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: Tests | ||
| on: | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| - dev | ||
| workflow_dispatch: | ||
| env: | ||
| EM_CACHE_FOLDER: "emsdk-cache" | ||
| jobs: | ||
| checkout: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v5 | ||
| setup: | ||
| needs: checkout | ||
| uses: './.github/workflows/setup.yml' | ||
|
Check failure on line 21 in .github/workflows/tests.yml
|
||
| tests: | ||
| runs-on: ubuntu-latest | ||
| needs: [checkout, setup] | ||
| steps: | ||
| - name: "Run build" | ||
| run: pnpm build | ||
| - name: "Run tests" | ||
| run: pnpm test:unit | ||
| - name: "Run linter" | ||
| run: pnpm clean && pnpm lint | ||