-
Notifications
You must be signed in to change notification settings - Fork 2.2k
42 lines (34 loc) · 949 Bytes
/
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
name: NFTs
on:
push:
branches: [main]
paths:
- "packages/nfts/**"
pull_request:
paths:
- "packages/nfts/**"
jobs:
build-nfts-contracts:
runs-on: [taiko-runner]
steps:
- name: Cancel previous runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- 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: Check formatting
working-directory: ./packages/nfts
run: forge fmt --check
- name: Solidity compilation
working-directory: ./packages/nfts
run: pnpm compile
- name: Unit Tests
working-directory: ./packages/nfts
run: pnpm test