fix(nft): fix s2 badges remigration #592
Workflow file for this run
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: NFTs | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
paths: | |
- "packages/nfts/**" | |
- "!packages/nfts/contract_layout_*" | |
branches-ignore: | |
- release-please--branches--** | |
jobs: | |
build-nfts-contracts: | |
if: ${{ github.event.pull_request.draft == false && !startsWith(github.head_ref, 'release-please') }} | |
runs-on: [arc-runner-set] | |
steps: | |
- name: Cancel previous runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Install Git | |
run: sudo apt-get update && sudo apt-get install -y git | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/[email protected] | |
- name: Install pnpm dependencies | |
uses: ./.github/actions/install-pnpm-dependencies | |
- name: Format solidity && update contract layout table | |
working-directory: ./packages/nfts | |
run: pnpm layout && forge fmt | |
- name: Solidity compilation | |
working-directory: ./packages/nfts | |
run: pnpm compile | |
- name: Unit Tests | |
working-directory: ./packages/nfts | |
run: pnpm test |