Skip to content

Commit

Permalink
✨Add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MattPoblete committed Oct 1, 2024
1 parent ccc2dd4 commit cc0954a
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/run-dapp-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Run dapp tests

on:
#pull_request:
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: '18.18.2'

- name: Install dependencies
run: yarn install

- name: Build app
run: yarn build --filter dapp

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: '18.18.2'

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

0 comments on commit cc0954a

Please sign in to comment.