Skip to content

Commit

Permalink
workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pyramation committed Apr 5, 2024
1 parent 3a04471 commit 98c84b7
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Run Tests

on:
push:
pull_request:
types: [opened, synchronized, reopened]
workflow_dispatch:

jobs:
run-tests:
runs-on: ubuntu-latest

steps:
# TODO: build global from the repo itself
# - name: Checkout Repository 🛎️
# uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'

- name: Install Dependencies
run: npm install -g create-cosmos-app

- name: check install
run: cca --example vote-proposal --name vote-proposal

0 comments on commit 98c84b7

Please sign in to comment.