-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reenable building for web in CI on pull requests
- Loading branch information
1 parent
f06c37f
commit 8a414aa
Showing
1 changed file
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
# name: Web Tests | ||
name: Web Tests | ||
|
||
# on: | ||
# pull_request: | ||
# push: | ||
# branches: main | ||
on: | ||
pull_request: | ||
push: | ||
branches: main | ||
|
||
# jobs: | ||
# wasm-pack-test: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@v3 | ||
jobs: | ||
build-for-web: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
# - name: install wasm-pack | ||
# uses: jetli/[email protected] | ||
# with: | ||
# version: latest | ||
- name: install wasm-pack | ||
uses: jetli/[email protected] | ||
with: | ||
version: latest | ||
|
||
# - name: Install Just | ||
# uses: extractions/setup-just@v2 | ||
- name: Install Just | ||
uses: extractions/setup-just@v2 | ||
|
||
# - name: Run tests | ||
# run: just test-web | ||
- name: Build | ||
run: just build |