-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* first batch of test done * update final hash of vaultManager implementation * fix: file update * fix: agToken contract cleaned * setup for upgraded agToken contract * fixing agToken names and stuff * changing some comments * fix rebase * feat: last rebase fix * feat: agToken update * remove silo * feat: remove useless files * feat: reorg contracts * fix: foundry tests * feat: gov scripts update * feat: continuing deployment scripts * deployment script agUSD * script resilience * deploymnt script * feat: deployment script for agUSD * feat: oracle testing * deleting utils file * feat: update constants file * add vanity to package * feat: deployment * fix: lz bridge token * feat: deployment of lz-agEUR * fix: ci of the repo * fix: build action * fix: tests * chore: update ci to load from cache node_modules * chore: compile directly in the ci for slither * chore: clean cache files before compiling foundry in slither ci --------- Co-authored-by: gs8nrv <[email protected]> Co-authored-by: 0xtekgrinder <[email protected]>
- Loading branch information
1 parent
53c0990
commit 0a857de
Showing
157 changed files
with
25,937 additions
and
2,965 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Setup repo | ||
description: Runs all steps to setup the repo (install node_modules, build, etc...) | ||
inputs: | ||
registry-token: | ||
description: 'PAT to access registries' | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Get yarn cache directory path | ||
id: yarn-cache-dir-path | ||
shell: bash | ||
run: | | ||
echo "::set-output name=dir::$(yarn cache dir)" | ||
echo "::set-output name=version::$(yarn -v)" | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20' | ||
|
||
- uses: actions/cache@v2 | ||
id: yarn-cache | ||
with: | ||
path: | | ||
**/node_modules | ||
${{ steps.yarn-cache-dir-path.outputs.dir }} | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-yarn- | ||
- name: Install dependencies | ||
shell: bash | ||
run: echo "//npm.pkg.github.com/:_authToken=$GH_REGISTRY_ACCESS_TOKEN" >> .npmrc && yarn install --frozen-lockfile --verbose && rm -f .npmrc | ||
env: | ||
GH_REGISTRY_ACCESS_TOKEN: ${{ inputs.registry-token }} |
File renamed without changes
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
Oops, something went wrong.