chore(deps): bump lib/aave-helpers from ffdfec5
to 6567dae
#1263
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: Test | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
registry-url: "https://registry.npmjs.org" | |
cache: "yarn" | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Enforce linting | |
run: yarn lint --check | |
test-sol: | |
uses: bgd-labs/github-workflows/.github/workflows/foundry-test.yml@main | |
secrets: inherit | |
with: | |
mode: "CHANGED" | |
test-js: | |
uses: bgd-labs/github-workflows/.github/workflows/test-node.yml@main | |
secrets: inherit |