Skip to content

Commit

Permalink
feat: integrate language server (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
g-plane authored Dec 6, 2024
1 parent 948cb29 commit 9f39c0e
Show file tree
Hide file tree
Showing 13 changed files with 1,666 additions and 29 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ jobs:
- name: install node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
node-version-file: ".nvmrc"

- name: install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh

- name: install pnpm
run: |
Expand All @@ -27,7 +30,11 @@ jobs:
run: pnpm install

- name: build
run: pnpm --filter "webassembly-playground" run build
run: |
cd lsp
wasm-pack build --no-pack --target web
cd ..
pnpm --filter "webassembly-playground" run build
- name: deploy to github pages
uses: peaceiris/actions-gh-pages@v3
Expand Down
9 changes: 7 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
node_modules/
dist/
node_modules/
dist/
target/
**/*.rs.bk
bin/
pkg/
wasm-pack.log
Loading

0 comments on commit 9f39c0e

Please sign in to comment.