Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test

on:
push:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Setup Node.js environment
uses: actions/setup-node@v2.1.2
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
- run: yarn install
- run: yarn test
18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Clientkit
<h1 align="center">Clientkit</h1>

![npm](https://img.shields.io/npm/v/clientkit.svg)
[![Build Status](https://travis-ci.org/firstandthird/clientkit.svg?branch=master)](https://travis-ci.org/firstandthird/clientkit)
<p align="center">
<a href="https://www.npmjs.com/package/clientkit">
<img src="https://img.shields.io/npm/v/clientkit.svg?label=npm&style=for-the-badge" alt="NPM" />
</a>
<a href="https://github.com/firstandthird/domodule/actions">
<img src="https://img.shields.io/github/workflow/status/firstandthird/clientkit/Test/master?label=Tests&style=for-the-badge" alt="Test Status"/>
</a>
</p>

A UI framework for building client projects efficiently and effectively.

Expand Down Expand Up @@ -38,6 +44,8 @@ Editor preferences are available in the [editor config](https://github.com/first
3. Install build dependencies: `npm install`
4. Start the build process: `npm start`

## Copyright
---

© 2020. First and Third, Inc. Maintained by [@firstandthird](https://github.com/orgs/firstandthird/people).
<a href="https://firstandthird.com"><img src="https://firstandthird.com/_static/ui/images/safari-pinned-tab-62813db097.svg" height="32" width="32" align="right"></a>

_A [First + Third](https://firstandthird.com) Project_