Undo move of files to safe-chain

This commit is contained in:
Sander Declerck 2025-08-05 13:35:40 +02:00
parent b29bc2e6dc
commit 8fe228c476
No known key found for this signature in database
68 changed files with 7 additions and 10 deletions

View file

@ -8,9 +8,6 @@ on:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: safe-chain
steps:
- name: Checkout code
@ -30,12 +27,6 @@ jobs:
version="${{ github.ref_name }}"
echo "tag=$version" >> $GITHUB_OUTPUT
- name: Add docs
run: |
cp ../README.md ./README.md
cp ../LICENSE ./LICENSE
cp -r ../docs ./docs
- name: Set the version
run: npm --no-git-tag-version version ${{ steps.get_version.outputs.tag }}

5
.npmignore Normal file
View file

@ -0,0 +1,5 @@
.github
.claude
test/e2e

View file

@ -16,7 +16,8 @@ describe("E2E: safe-chain setup command", () => {
before(async () => {
// Build the Docker image for the test environment
try {
execSync(`docker build -t ${imageName} -f Dockerfile ../../safe-chain`, {
const sourceDir = path.join(__dirname, "../..");
execSync(`docker build -t ${imageName} -f Dockerfile ${sourceDir}`, {
cwd: __dirname,
stdio: "ignore",
});