Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/COEDOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Require reviews from Solidity reviewers for .sol files

.sol @OriginProtocol/core
18 changes: 14 additions & 4 deletions .github/workflows/abi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,28 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: false

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "yarn"
cache-dependency-path: contracts/yarn.lock
cache: "pnpm"
cache-dependency-path: contracts/pnpm-lock.yaml

- name: Configure Git to use HTTPS for GitHub
run: git config --global url."https://github.com/".insteadOf "[email protected]:"

- run: yarn install --frozen-lockfile
- name: Install deps
working-directory: ./contracts
run: pnpm install --frozen-lockfile

- name: "Generate ABI files"
run: (yarn run abi:generate) && (yarn run abi:dist)
run: (pnpm run abi:generate) && (pnpm run abi:dist)
env:
CONTRACT_SIZE: true
working-directory: ./contracts
Expand Down
21 changes: 0 additions & 21 deletions .github/workflows/danger.yml

This file was deleted.

Loading
Loading