Skip to content

Commit

Permalink
add basic CI
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Apr 15, 2024
1 parent 4da0fce commit 70de8e3
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: ci

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
- run: pnpm install
- run: pnpm build
- run: pnpm compile
- run: pnpm format:check
- run: pnpm lint:check
- run: pnpm test
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,27 @@
# dapp
A web-dapp providing some auxiliary Encointer tools

## Prerequisites

Before you begin, ensure you have met the following requirements:

- You have installed [Node.js](https://nodejs.org/en/download/)
- You have installed [pnpm](https://pnpm.io/installation)

## Installing Dependencies

To install dependencies, follow these steps:

```bash
pnpm install
```

## Using Dapp

To use Playground, follow these steps:

```bash
pnpm dev
```

This will start the development server. Open the link given during startup to access the playground.

0 comments on commit 70de8e3

Please sign in to comment.