Skip to content

Commit b424d5e

Browse files
rmarkins-godaddyrxmarblesagerard-godaddy
authored
chore: fix lockfile, tests, and add CI GH action (#34)
* chore: fix lockfile, tests, and add CI GH action * dist: stick to react@17 until off enzyme * ci: help ensure internal registry not used --------- Co-authored-by: Richard Markins <[email protected]> Co-authored-by: Andrew Gerard <[email protected]>
1 parent a2463a5 commit b424d5e

File tree

8 files changed

+6942
-5977
lines changed

8 files changed

+6942
-5977
lines changed

.github/ci.yaml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Continuous Integration
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- '*'
7+
8+
jobs:
9+
ci:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout Repo
13+
uses: actions/[email protected]
14+
- name: Setup Node
15+
uses: actions/setup-node@v3
16+
with:
17+
node-version-file: .nvmrc
18+
cache: npm
19+
cache-dependency-path: package-lock.json
20+
- name: Install Dependencies
21+
run: npm ci
22+
- name: Run Tests
23+
run: npm test

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry=https://registry.npmjs.org/

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
20

.travis.yml

-8
This file was deleted.

codecov.yml

-10
This file was deleted.

0 commit comments

Comments
 (0)