Skip to content

Commit e4a4946

Browse files
authored
feat: add circleci (#19)
1 parent edc8081 commit e4a4946

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.circleci/config.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: 2.1
2+
3+
jobs:
4+
test:
5+
working_directory: ~/repo
6+
docker:
7+
- image: gengjiawen/node-build:wasm
8+
steps:
9+
- checkout
10+
- run: npx envinfo
11+
- run:
12+
name: test
13+
command: |
14+
npx envinfo
15+
cd wasm && wasm-pack build
16+
17+
18+
workflows:
19+
version: 2
20+
build_and_test:
21+
jobs:
22+
- test

0 commit comments

Comments
 (0)