add zola slug strategy #198
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: Test | |
# Run tests only. | |
# | |
# This workflow is designed to be run on PR to validate commits. | |
# It can be seen as a short version of `main.yml`. | |
on: | |
pull_request: | |
branches: ["master"] | |
# Sometimes we want to test a few minor changes. | |
# To avoid triggering the workflow twice, | |
# this is only enabled for branch names that are very unlikely to be a PR head. | |
push: | |
branches: ["dev/-/**"] | |
paths: | |
- "src/**" | |
- "package-lock.json" | |
- "!**.md" | |
workflow_dispatch: | |
repository_dispatch: | |
types: ["test"] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Setup Node.js environment" | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
cache: "npm" | |
- name: Setup Rust Toolchain for GitHub CI | |
uses: actions-rust-lang/setup-rust-toolchain@v1.8.0 | |
- name: Install wasm-pack | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: "Install dependencies" | |
run: | | |
npm run build-wasm | |
npm ci | |
- name: "Build debug" | |
run: | | |
export NODE_ENV='development' | |
npx vsce package --pre-release --out debug.vsix | |
- name: Test | |
uses: GabrielBB/xvfb-action@v1.0 | |
with: | |
run: npm test | |
- name: "Rust test" | |
run: | | |
cd ./src/zola-slug/ | |
cargo test --release | |
- name: "(debug) Upload npm log" | |
if: ${{ !success() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "npm-debug-log" | |
path: "~/.npm/_logs" |