Skip to content

refactor(test): redirect imports #869

refactor(test): redirect imports

refactor(test): redirect imports #869

Workflow file for this run

name: Hardhat Test Suite
on:
push:
branches:
- main
pull_request:
workflow_call:
secrets:
ALCHEMY_KEY:
required: true
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
hardhat:
runs-on: ubuntu-latest
strategy:
matrix:
package:
- @morpho-org/bundlers-sdk-ethers

Check failure on line 24 in .github/workflows/hardhat.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/hardhat.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- run: yarn --immutable
- uses: actions/cache@v4
with:
path: |
packages/${{ matrix.package }}/cache/
packages/${{ matrix.package }}/artifacts/
key: ${{ github.base_ref || github.ref_name }}-${{ matrix.package }}-hardhat
- run: yarn workspace ${{ matrix.package }} test
env:
ALCHEMY_KEY: ${{ secrets.ALCHEMY_KEY }}