Skip to content

build(deps): bump @typegoose/typegoose from 11.3.0 to 11.4.0 #3716

build(deps): bump @typegoose/typegoose from 11.3.0 to 11.4.0

build(deps): bump @typegoose/typegoose from 11.3.0 to 11.4.0 #3716

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: "latest"
- name: Setup Node.js@lts environment
uses: actions/setup-node@v3
with:
node-version: "lts/*"
cache: "npm"
- name: Cache multiple paths
uses: actions/cache@v2
with:
path: |
~/.npm
~/cache
!~/cache/exclude
**/node_modules
key: npm-${{ runner.os }}-${{ hashFiles('package.json') }}
- run: pnpm i --fix-lockfile
- run: pnpm run lint
- run: pnpm run build
- run: pnpm run test:e2e