Skip to content

Commit fc8cf13

Browse files
committed
Started the CI configuration.
1 parent 88f3cc9 commit fc8cf13

File tree

6 files changed

+22
-82
lines changed

6 files changed

+22
-82
lines changed

.cargo/config.toml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# You may be asking, "wait, why is this here and not in the pacakge directories?"
2+
# As of January 2025, [per-package targets](https://github.com/rust-lang/cargo/issues/9406) hasn't hit stable Rust. Once that hits, we can move this back into the package directories.
3+
4+
[build]
5+
target = "wasm32-unknown-unknown"
File renamed without changes.

.github/workflows/wasm-splats-ci.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: wasm-splats-ci.yml
2+
on:
3+
push:
4+
paths:
5+
- 'wasm-splats/**'
6+
- '.github/workflows/wasm-splats-ci.yml'
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
14+
- name: Install wasm-pack
15+
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
16+
17+
- run: wasm-pack test wasm-splats --headless --chrome --firefox

wasm-splats/.appveyor.yml

-11
This file was deleted.

wasm-splats/.cargo/config.toml

-2
This file was deleted.

wasm-splats/.travis.yml

-69
This file was deleted.

0 commit comments

Comments
 (0)