-
Notifications
You must be signed in to change notification settings - Fork 2.2k
46 lines (37 loc) · 1.25 KB
/
nfts.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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/cancel-workflow-action@0.12.1
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/foundry-toolchain@v1.2.0
- 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