chore: + copy assets to dist in vue-playground build script #151
Workflow file for this run
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
name: CI | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/[email protected] | |
with: | |
node-version: 16.x | |
# File containing the ve | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
components: clippy | |
override: true | |
- name: soft-skia | |
run: | | |
cd soft-skia | |
cargo build | |
cargo test | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
- name: soft-skia-wasm | |
run: | | |
cargo install wasm-pack | |
pnpm run build:wasm | |
- name: vue-skia-framework | |
run: | | |
cd vue-skia-framework | |
pnpm i | |
cd .. | |
pnpm run build:vue | |
- name: vue-playground available | |
run: | | |
cd vue-playground | |
pnpm i | |
cd .. | |
pnpm --filter vue-playground build | |
- name: Archive vue-skia-framework artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: vue-skia-framework | |
path: | | |
vue-skia-framework/lib | |
vue-skia-framework/type.d.ts | |
vue-skia-framework/main.js | |
vue-skia-framework/main.d.ts | |
vue-skia-framework/components | |
vue-skia-framework/LICENSE | |
vue-skia-framework/package-publish.json | |
- name: Archive soft-skia-wasm artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: soft-skia-wasm | |
path: | | |
soft-skia-wasm/pkg | |
- name: Archive vue-playground-available artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: vue-playground-available | |
path: | | |
vue-playground/dist |