Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Bump @types/node from 20.11.25 to 20.12.7 #456

Bump @types/node from 20.11.25 to 20.12.7

Bump @types/node from 20.11.25 to 20.12.7 #456

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [19.x]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm i
- name: Generate prisma
run: npx prisma generate
- name: Check formatting
run: pnpm format-check
- name: Build project
run: pnpm build
# - name: Run tests
# run: pnpm test