Skip to content

WIP: Tests-set-up

WIP: Tests-set-up #21

Workflow file for this run

name: Run pnpm tests
on:
push:
branches:
- 'testnet'
tags:
- 'v*'
pull_request:
branches:
- 'testnet'
jobs:
test:
name: Run pnpm tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
attempt: [1,2,3]
# services:
# redis:
# image: redis:latest
# ports:
# - 6379:6379
# options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '21.7.1'
- name: Install curl
run: sudo apt-get update && sudo apt-get install -y curl
- name: Install Foundry and anvil
run: |
echo "Installing Foundry and anvil"
sudo chmod +x ./deployments/ci/install_foundry.sh
sudo ./deployments/ci/install_foundry.sh
- name: Install pnpm
run: sudo npm install -g pnpm
- name: Install dependencies
run: sudo pnpm install --no-frozen-lockfile
- name: Create typechain artifacts for relayer
run: pnpm postinstall
- name: Create typechain artifacts for tests
run: pnpm before-test
- name: Run tests
run: |
sudo export PATH="$HOME/.foundry/bin:$PATH"
sudo npm test
- name: Retry test if failed
if: ${{ failure() && matrix.attempt != '3' }}
run: exit 1