Fix API client issues & Add Pagoda EAPI client & Update UI kit (#68) #217
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
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Execute all unit tests | |
on: | |
push: | |
branches: ["*"] | |
pull_request: | |
branches: [main, staging] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "yarn" | |
- name: Install dependencies | |
run: yarn install --immutable --immutable-cache --check-cache | |
- name: Execute Unit tests | |
env: | |
NEXT_PUBLIC_NETWORK: mainnet | |
NEXT_PUBLIC_NADABOT_CONTRACT_ID: v2new.staging.nadabot.near | |
NEXT_PUBLIC_SOCIAL_DB_CONTRACT_ID: social.near | |
run: yarn test:unit |