Skip to content

Merge branch 'main' of https://github.com/pmndrs/koota #7

Merge branch 'main' of https://github.com/pmndrs/koota

Merge branch 'main' of https://github.com/pmndrs/koota #7

Workflow file for this run

name: PR Checks
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_dispatch:
inputs:
test:
description: 'Run tests'
required: true
default: 'false'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run tests
run: pnpm test