Skip to content

Commit

Permalink
Merge pull request #590 from gregberge/upgrade-deps
Browse files Browse the repository at this point in the history
chore(deps): upgrade
  • Loading branch information
gregberge authored Sep 5, 2021
2 parents 911de25 + 5841597 commit 3a2f5e3
Show file tree
Hide file tree
Showing 31 changed files with 151,382 additions and 3,054 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"root": true,
"parser": "babel-eslint",
"extends": ["airbnb", "prettier", "prettier/react"],
"extends": ["airbnb", "prettier"],
"env": {
"jest": true
},
Expand Down
40 changes: 40 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- name: Check out repository code
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: yarn

- name: Build
run: yarn build

- name: Lint
run: yarn lint

- name: Test
run: yarn test --ci --coverage

- name: Codecov
run: yarn codecov
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

Loading

1 comment on commit 3a2f5e3

@vercel
Copy link

@vercel vercel bot commented on 3a2f5e3 Sep 5, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.