1st anniversary event updates #972
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: | |
push: | |
branches: | |
- main | |
- beta | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
Hardhat: | |
runs-on: ubuntu-latest | |
env: | |
# These are just dummy values to prevent hardhat complaining about config issues | |
FTM_RPC: NA | |
FTM_RPC_TESTNET: NA | |
PRIVATE_KEY: "0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80" | |
PRIVATE_KEY1: "0xa0610ad18a7a793b0d2c12d28d74ccc8d90a422514db2e4cea3a9eaec7215ad3" | |
IS_BETA: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install packages | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16.x" | |
- run: yarn install | |
shell: bash | |
- name: Deploy | |
run: yarn deploy | |
- name: Tests | |
run: yarn test |