diff --git a/.github/workflows/forge-build.yaml b/.github/workflows/forge-build.yaml deleted file mode 100644 index 91c32573..00000000 --- a/.github/workflows/forge-build.yaml +++ /dev/null @@ -1,58 +0,0 @@ -name: "Build a Forge project" - -on: - workflow_call: - inputs: - cache-path: - default: | - cache - node_modules - out - out-optimized - required: false - type: "string" - - save-cache: - default: true - required: false - type: boolean - - store-artifacts: - default: true - required: false - type: boolean - -jobs: - forge-build: - runs-on: "ubuntu-latest" - steps: - - name: "Check out the repo" - uses: "actions/checkout@v4" - - - name: "Install Foundry" - uses: "foundry-rs/foundry-toolchain@v1" - - - name: "Install NodeJS" - uses: actions/setup-node@v3 - with: - node-version: 21 - - - uses: pnpm/action-setup@v3 - name: Install pnpm - with: - version: 8.15 - run_install: false - - - name: "Install the Node.js dependencies" - run: "pnpm install" - - - name: "Show the Forge config" - run: "forge config" - - - name: "Build the production contracts" - run: "forge build" - - - name: "Add summary" - run: | - echo "## Build result" >> $GITHUB_STEP_SUMMARY - echo "✅ Passed" >> $GITHUB_STEP_SUMMARY diff --git a/.github/workflows/pnpm.yaml.bak b/.github/workflows/pnpm.yaml.bak deleted file mode 100644 index 04a75de0..00000000 --- a/.github/workflows/pnpm.yaml.bak +++ /dev/null @@ -1,34 +0,0 @@ -on: - - push - - pull_request - -jobs: - cache-and-install: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Install Node.js - uses: actions/setup-node@v3 - with: - node-version: 18 - - - name: Install Foundry - uses: foundry-rs/foundry-toolchain@v1 - - - uses: pnpm/action-setup@v3 - name: Install pnpm - with: - version: 8.15 - run_install: false - - - name: Install dependencies - run: pnpm i - - - name: Build ModuleKit - run: pnpm build - - - name: run modulekit tests - run: pnpm test