Skip to content

Commit

Permalink
✨Add workflow to test dapp on push
Browse files Browse the repository at this point in the history
  • Loading branch information
MattPoblete committed Sep 30, 2024
1 parent 982eaac commit e0ee10d
Show file tree
Hide file tree
Showing 3 changed files with 128 additions and 958 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/run-dapp-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Run dapp tests

on:
push:
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.10.0'

- name: Install dependencies
run: yarn install

- name: Build app
run: yarn build

test-app:
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.10.0'

- name: Run jest tests
run: yarn test:dapp

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test:dapp": "yarn exec jest --filter dapp"
},
"devDependencies": {
"prettier": "^3.2.5",
Expand Down
Loading

0 comments on commit e0ee10d

Please sign in to comment.