Skip to content
This repository was archived by the owner on Oct 26, 2024. It is now read-only.

Commit 17bd89c

Browse files
Adding .github config
1 parent da965f2 commit 17bd89c

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
patreon: guillaumebriday

.github/workflows/lint.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Lint
2+
3+
on: [push]
4+
5+
jobs:
6+
eslint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- uses: actions/setup-node@v1
11+
with:
12+
node-version: '14.x'
13+
- run: |
14+
yarn install
15+
yarn lint

.github/workflows/test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
name: Test
3+
4+
on: [push]
5+
6+
jobs:
7+
jest:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v1
11+
- uses: actions/setup-node@v1
12+
with:
13+
node-version: '14.x'
14+
- name: test
15+
run: |
16+
yarn install
17+
yarn test
18+
env:
19+
CI: true
20+
NOVE_ENV: test

0 commit comments

Comments
 (0)