diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..b5588192 --- /dev/null +++ b/.github/workflows/test.yml @@ -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 diff --git a/README.md b/README.md index bd9489d3..4b8adbb0 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,13 @@ -# Clientkit +

Clientkit

-![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) +

+ + NPM + + + Test Status + +

A UI framework for building client projects efficiently and effectively. @@ -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 [First + Third](https://firstandthird.com) Project_