Skip to content

[Feature] Improve HMR and build performance of aleo.tools #507

[Feature] Improve HMR and build performance of aleo.tools

[Feature] Improve HMR and build performance of aleo.tools #507

Workflow file for this run

name: Test Website Deploy
on: [pull_request]
jobs:
test-deploy:
name: Test SDK Website
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
# with:
# persist-credentials: false
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt
- uses: jetli/[email protected]
with:
# Optional version of wasm-pack to install(eg. 'v0.9.1', 'latest')
version: 'latest'
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-website-${{ hashFiles('**/Cargo.lock') }}
- name: Install and Build
run: |
rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
cd website
yarn install
yarn build
cp _headers dist/_headers
env:
CI: ""
- name: Test Deploy
id: unmodified
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: website/dist
clean-exclude: '["dev"]'
dry-run: true
- name: Check step output
run: |
[[ \
${{steps.unmodified.outputs.deployment-status}} = skipped || \
${{steps.unmodified.outputs.deployment-status}} = success \
]]