Initial commit - Event Planner application

This commit is contained in:
mberlin
2026-03-18 14:55:56 -03:00
commit 86d779eb4d
7548 changed files with 1006324 additions and 0 deletions

55
node_modules/@nestjs/serve-static/.circleci/config.yml generated vendored Normal file
View File

@@ -0,0 +1,55 @@
version: 2
aliases:
- &restore-cache
restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- &install-deps
run:
name: Install dependencies
command: npm install --ignore-scripts
- &build-packages
run:
name: Build
command: npm run build
jobs:
build:
working_directory: ~/nest
docker:
- image: cimg/node:22.20.0
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Install dependencies
command: npm install --ignore-scripts
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
name: Build
command: npm run build
e2e_test:
working_directory: ~/nest
docker:
- image: cimg/node:22.20.0
steps:
- checkout
- *restore-cache
- *install-deps
- run:
name: E2E tests
command: npm run test:e2e
workflows:
version: 2
build-and-test:
jobs:
- build
- e2e_test:
requires:
- build