Create build.yml

master
lanxu 2024-05-01 18:35:03 +00:00 committed by GitHub
parent f478f3e983
commit 4e24c3178f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 35 additions and 0 deletions

35
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,35 @@
name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Wasm-pack
run: cargo install wasm-pack
- name: Build
run: wasm-pack build --target=bundler --dev --out-name index
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Build
working-directory: ./www
run: |
npm install
npx webpack