Add e2e tests to workspace

This commit is contained in:
Sander Declerck 2025-09-05 11:33:08 +02:00
parent 7673d32912
commit 8d015fdca3
No known key found for this signature in database
4 changed files with 14 additions and 12 deletions

View file

@ -6,13 +6,13 @@ ENV CI=true
WORKDIR /app
# Copy package files first for better caching
COPY package*.json ./
COPY packages/safe-chain/package*.json ./
# Install dependencies
RUN npm install
# Copy the rest of the application
COPY . .
COPY packages/safe-chain ./
# Build the application
RUN npm --no-git-tag-version version 1.0.0 --allow-same-version

View file

@ -1,5 +1,6 @@
{
"name": "@aikidosec/safe-chain-e2e-tests",
"private": true,
"version": "1.0.0",
"description": "End-to-end tests for the Aikido Safe Chain",
"scripts": {