Skip to content

Feat/x2earn rewards pool #25

Feat/x2earn rewards pool

Feat/x2earn rewards pool #25

Workflow file for this run

name: Unit Testing
on:
workflow_dispatch:
pull_request:
branches:
- main
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node v20
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Unit Tests
run: yarn test