Skip to content

Commit

Permalink
Updating ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
corbanbrook committed Apr 24, 2024
1 parent 93c52a0 commit 1545801
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test

on: [push]

jobs:
build:
runs-on: ubuntu-latest
name: Build and Push
steps:
- name: git-checkout
uses: actions/checkout@v4

- name: Install dependencies
uses: ./.github/actions/install-dependencies

- name: Typecheck
run: pnpm typecheck

- name: Build
run: pnpm build && pnpm build:react

- name: Test
run: pnpm test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build dapp
name: Deploy Example

on:
push:
Expand Down

0 comments on commit 1545801

Please sign in to comment.