Skip to content

Commit

Permalink
add checks xml
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjenx committed Jul 24, 2024
1 parent a2a7b42 commit 38b5d2d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Checks
run-name: ${{ github.actor }} is running checks
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
Checks-JS:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Chrome
uses: browser-actions/[email protected]

- name: Run Js tests
run: ./gradlew jsBrowserTest
- name: Run Wasm tests
run: ./gradlew wasmJsBrowserTest

0 comments on commit 38b5d2d

Please sign in to comment.