refactor: remove account dependencies #215
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Dependency Installation of ModuleKit | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Foundry | |
uses: foundry-rs/[email protected] | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.0.6 | |
- name: Pack the package | |
id: npm-pack | |
run: | | |
PACKAGE_NAME=$(npm pack) | |
echo "package=$PACKAGE_NAME" >> $GITHUB_ENV | |
- name: Run npm test | |
run: | | |
mkdir test-npm-install | |
cd test-npm-install | |
npm init -y | |
npm install "../${{ env.package }}" | |
mkdir -p src | |
echo 'import "modulekit/ModuleKit.sol";' > src/TestImport.sol | |
echo '[profile.default] | |
evm_version = "cancun" | |
src = "src" | |
out = "out" | |
libs = ["node_modules"]' > foundry.toml | |
cp node_modules/@rhinestone/modulekit/remappings.txt remappings.txt | |
forge build | |
- name: Run pnpm test | |
run: | | |
mkdir test-pnpm-install | |
cd test-pnpm-install | |
pnpm init | |
pnpm install "../${{ env.package }}" --shamefully-hoist | |
mkdir -p src | |
echo 'import "modulekit/ModuleKit.sol";' > src/TestImport.sol | |
echo '[profile.default] | |
evm_version = "cancun" | |
src = "src" | |
out = "out" | |
libs = ["node_modules"]' > foundry.toml | |
cp node_modules/@rhinestone/modulekit/remappings.txt remappings.txt | |
forge build | |
- name: Clean up | |
run: | | |
rm "${{ env.package }}" | |
rm -rf test-npm-install | |
rm -rf test-pnpm-install |