mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 04:00:49 +00:00
Undo move of files to safe-chain
This commit is contained in:
parent
b29bc2e6dc
commit
8fe228c476
68 changed files with 7 additions and 10 deletions
9
.github/workflows/build-and-release.yml
vendored
9
.github/workflows/build-and-release.yml
vendored
|
|
@ -8,9 +8,6 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
working-directory: safe-chain
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
|
|
@ -30,12 +27,6 @@ jobs:
|
||||||
version="${{ github.ref_name }}"
|
version="${{ github.ref_name }}"
|
||||||
echo "tag=$version" >> $GITHUB_OUTPUT
|
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
|
- name: Set the version
|
||||||
run: npm --no-git-tag-version version ${{ steps.get_version.outputs.tag }}
|
run: npm --no-git-tag-version version ${{ steps.get_version.outputs.tag }}
|
||||||
|
|
||||||
|
|
|
||||||
5
.npmignore
Normal file
5
.npmignore
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
|
||||||
|
.github
|
||||||
|
.claude
|
||||||
|
test/e2e
|
||||||
|
|
||||||
0
safe-chain/package-lock.json → package-lock.json
generated
0
safe-chain/package-lock.json → package-lock.json
generated
|
|
@ -16,7 +16,8 @@ describe("E2E: safe-chain setup command", () => {
|
||||||
before(async () => {
|
before(async () => {
|
||||||
// Build the Docker image for the test environment
|
// Build the Docker image for the test environment
|
||||||
try {
|
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,
|
cwd: __dirname,
|
||||||
stdio: "ignore",
|
stdio: "ignore",
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue