Skip to content

fix: types

fix: types #37

Workflow file for this run

name: Build Windows
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install pnpm
run: npm i -g pnpm
- name: Install dependencies
run: pnpm i
- name: Build project
run: pnpm build
- name: Output `second.astro`
run: type .vercel\output\static\second\index.html
- name: Output `third.astro`
run: type .vercel\output\static\third\index.html