feat: add slack alerting #74
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
env: | |
ALCHEMY_ID: ${{ secrets.ALCHEMY_ID }} | |
INFURA_ID: ${{ secrets.INFURA_ID }} | |
PROVIDER_URLS: ${{ vars.PROVIDER_URLS }} | |
jobs: | |
check: | |
strategy: | |
fail-fast: true | |
environment: CI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install yarn | |
run: npm install -g yarn | |
- name: Run yarn install | |
run: yarn install | |
- name: Run linter | |
run: yarn lint | |
- name: Run formatter | |
run: yarn format:check | |
- name: Run utils tests | |
run: yarn test:utils | |
- name: Run gnosis tests | |
run: yarn test:gnosis | |
- name: Run mainnet tests | |
run: yarn test:mainnet |