Skip to content

lint: pass cargo clippy #39

lint: pass cargo clippy

lint: pass cargo clippy #39

Workflow file for this run

name: gh_pages
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Runs on pushes targeting the default branch
push:
branches:
- master
env:
CARGO_TERM_COLOR: always
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
override: true
profile: minimal
- name: Install trunk
uses: jetli/trunk-action@v0.1.0
with:
version: "latest"
- name: Install node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install node dependencies
run: npm clean-install
- name: Disable terminal hooks
run: sed -i '/\[\[hooks\]\]/,$d' 'Trunk.toml'
- name: Build
run: trunk build --release --features examples
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload output repository
path: dist
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4