CurrentAssetInvestmentAllocation Refactor #110
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 dapp tests | |
on: | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: write | |
pull-requests: write | |
issues: read | |
packages: none | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
- name: Set up Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: '20.18.0' | |
- name: Install dependencies | |
run: yarn install | |
- name: Build app | |
run: yarn build --filter dapp | |
run-tests: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
- name: Set up Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: '20.18.0' | |
- name: Run jest tests in dapp directory | |
run: | | |
cd apps/dapp | |
yarn test |