Rename whitelists to fee / reward specific words #120
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: run-test-suite | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
branches: ["**"] | |
paths-ignore: | |
- "README.md" | |
workflow_dispatch: | |
jobs: | |
# sets up build artifacts for other jobs to use | |
setup-build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.16] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install --production=false | |
- name: clean | |
run: yarn clean | |
- name: Compile @webb-tools/masp-anchor-contracts | |
run: lerna run compile --scope @webb-tools/masp-anchor-contracts | |
- name: Build packages | |
run: lerna run build | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: build-artifacts | |
path: | | |
packages/**/dist | |
!packages/**/node_modules | |
masp-tests: | |
needs: setup-build | |
concurrency: | |
group: masp-test-${{ github.ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
if: github.ref != 'refs/heads/main' && github.event.pull_request.draft == false | |
strategy: | |
matrix: | |
node-version: [18.16] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download build artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
name: build-artifacts | |
path: packages | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Setup DVC | |
uses: iterative/setup-dvc@v1 | |
- name: Fetch submodules | |
run: git submodule update --init --recursive | |
- name: Install dependencies | |
run: yarn install --production=false | |
- name: Populate fixtures | |
run: yarn fetch:fixtures | |
- name: Run test suite | |
env: | |
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }} | |
run: yarn test |