Skip to content

Feat/fux profile page #71

Feat/fux profile page

Feat/fux profile page #71

Workflow file for this run

name: Deploy prod
on:
pull_request:
push:
branches:
- main
- develop
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
jobs:
build-and-test:
# The type of runner that the job will run on
name: Build and test contracts
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8.9.0
- name: Install
run: pnpm install
- name: Test
run: pnpm test
env:
MNEMONIC: ${{ secrets.MNEMONIC }}
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}