fix: mining and mined addresses #861
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: '📦 Build' | |
on: | |
push: | |
branches: | |
- '**' | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.ref }} | |
env: | |
FOUNDRY_PROFILE: ci | |
jobs: | |
build: | |
strategy: | |
fail-fast: true | |
name: 👁️ Build and Keep Artifacts | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛒 Checkout | |
uses: actions/checkout@v4 | |
- name: ⚙️ Setup Action | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 8 | |
- name: 📚 Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
- name: 📂 Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- uses: actions/cache@v4 | |
name: 🫙 Setup pnpm cache | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: ✨ Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: 📦 Install dependencies | |
run: | | |
pnpm install --frozen-lockfile | |
forge install | |
- name: 📦 Build package | |
run: pnpm build | |
- name: 🧹 Lint | |
run: pnpm build:lint | |
- name: 🧪 Run Forge Gas Snapshot | |
run: | | |
forge snapshot | |
- name: 📝 Configure Git Commit | |
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' }} | |
run: | | |
git config user.name "nftchance" | |
git config user.email "[email protected]" | |
- name: 📝 Commit Changes | |
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' }} | |
run: | | |
git add . | |
git diff --staged --quiet || git commit -m "chore: update build artifacts" | |
git push https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/nftchance/plug-core.git |