Skip to content

feat(create-vitnode): ✨ add README generation and update dependencies #147

feat(create-vitnode): ✨ add README generation and update dependencies

feat(create-vitnode): ✨ add README generation and update dependencies #147

Workflow file for this run

name: Build, Lint & Test
on:
pull_request:
branches: "*"
types:
- opened
- edited
- synchronize
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10.18.3
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build Scripts
run: pnpm build:scripts
- name: Run build
run: pnpm build
- name: Check formatting
run: pnpm lint
- name: Run tests
run: pnpm test