Skip to content

ci: use the renamed setup-generator and download actions #8

ci: use the renamed setup-generator and download actions

ci: use the renamed setup-generator and download actions #8

Workflow file for this run

on:
push:
branches:
- '**'
pull_request:
workflow_call:
inputs:
ref:
description: Ref of this repository to build.
required: false
type: string
default: main
name: Build
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
repository: vrchatapi/vrchatapi-javascript
ref: ${{ inputs.ref || github.ref }}
- uses: vrchatapi/specification/.github/actions/download@ci/modernise-actions
- uses: pnpm/action-setup@v6
with:
version: 10
run_install: false
- uses: actions/setup-node@v7
with:
node-version: 24
cache: pnpm
- run: pnpm install
- run: pnpm build