Skip to content

swipelux page added #866

swipelux page added

swipelux page added #866

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: BUILD-DAPP
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
paths-ignore:
- '**.md'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build-dapp:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: yarn install
- name: Run lint
run: yarn lint
- name: Run tests
run: yarn test
- name: Build Dapp
run: yarn build