Skip to content

ci: opt into Node 24 action runtime #19

ci: opt into Node 24 action runtime

ci: opt into Node 24 action runtime #19

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
permissions:
contents: read
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
verify:
name: Verify
runs-on: ubuntu-24.04
timeout-minutes: 30
env:
RUST_TOOLCHAIN: 1.93.0
steps:
- name: Checkout
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- name: Set up Vite+
uses: voidzero-dev/setup-vp@ca1c46663915d6c1042ae23bd39ab85718bfb0fa # v1
with:
node-version: 22
cache: true
run-install: |
args: ["--frozen-lockfile"]
- name: Install Rust toolchain
run: |
rustup toolchain install "$RUST_TOOLCHAIN" --profile minimal --component clippy
rustup default "$RUST_TOOLCHAIN"
rustup target add wasm32-unknown-unknown --toolchain "$RUST_TOOLCHAIN"
- name: Install WebAssembly linker
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends --yes lld
- name: Run workspace CI
run: vp run ci