Skip to content

chore(deps-dev): bump @kitajs/cli from 1.1.26 to 1.1.27 #20

chore(deps-dev): bump @kitajs/cli from 1.1.26 to 1.1.27

chore(deps-dev): bump @kitajs/cli from 1.1.26 to 1.1.27 #20

Workflow file for this run

name: CI Flow
on:
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
name: CI flow ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Setup node and restore cached dependencies
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install packages
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Test
run: pnpm test