-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 1.0.4
- Loading branch information
Showing
55 changed files
with
2,536 additions
and
480 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
node_modules | ||
.github | ||
.expo | ||
.expo-shared |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"root": true, | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": [ | ||
"@typescript-eslint", | ||
"prettier", | ||
"react" | ||
], | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:react/recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier" | ||
], | ||
"rules": { | ||
"no-console": 1, | ||
"prettier/prettier": 2, | ||
"@typescript-eslint/no-explicit-any": 0, | ||
"react/display-name": 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
name: New Prayer | ||
about: Request a new prayer | ||
title: '' | ||
labels: prayer | ||
assignees: '' | ||
|
||
--- | ||
|
||
# Name of the prayer you want to add | ||
Ex: Notre Père | ||
|
||
## The prayer text | ||
Ex: Notre Père, qui êtes aux cieux, | ||
Que votre nom soit sanctifié, etc... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Test | ||
about: New testing related issue | ||
title: 'Tests - ' | ||
labels: tests | ||
assignees: '' | ||
|
||
--- | ||
|
||
# What is the feature to tests | ||
Brief description | ||
|
||
> Test category: *unit* | *mocking* | *integration* | *component - render* | *component - interaction* | *e2e* | ||
### Scenario | ||
*Given* I am ... | ||
*When* I click... | ||
*Then* I should see ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# A Brief descriptions of yout work | ||
blabla... | ||
|
||
## Details | ||
- this | ||
- and that | ||
|
||
## Testing | ||
- Click on | ||
- Then on | ||
- This should appear/happen | ||
|
||
> Do not forget to link your Issue and delete this message |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
||
name: Unit testing | ||
|
||
on: | ||
push: | ||
branches: [ develop, master ] | ||
pull_request: | ||
branches: [ develop, master ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [12.x, 13.x] | ||
|
||
steps: | ||
- 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 install | ||
- name: Run Linter | ||
run: yarn run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.expo | ||
.expo-shared | ||
.github | ||
assets | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"semi": false, | ||
"trailingComma": "none", | ||
"singleQuote": true, | ||
"printWidth": 80 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Prayer Notifications App | ||
|
||
![Unit testing](https://github.com/awalshy/PrayerNotificationsApp/workflows/Unit%20testing/badge.svg?branch=develop) | ||
|
||
## The project | ||
|
||
This project is a React Native App that create daily notifications. | ||
|
||
## Contributing | ||
|
||
Thank you for contributing to the project ! | ||
If you are not a developper and you want to tell us about a bug or if you want to request a new feature, please feel free to create a new issue ! | ||
|
||
If you are a developper, please see the [contributions section](./docs/contributing.md). Please also see the [local development](./docs/local-development.md) to install and dev in your local environment. | ||
|
||
## Launch the project | ||
|
||
Run `yarn install` to get dependencies, then `expo-cli start`. Requires the `expo-cli` installation. | ||
|
||
## Tests and deployment | ||
|
||
#### Tests | ||
|
||
See the [testing](./docs/testing.md) guidelines. CI is launched on PRs. | ||
|
||
#### Deployment | ||
> Deployments are done by hand for the moment. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
File renamed without changes
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,23 @@ | ||
module.exports = function(api) { | ||
api.cache(true); | ||
const presets = ['babel-preset-expo']; | ||
const plugins = [[ | ||
require.resolve('babel-plugin-module-resolver'), | ||
{ | ||
root: ['.'], | ||
alias: { | ||
'config': './config', | ||
'elements': './elements', | ||
'screens': './screens', | ||
'utils': './utils', | ||
'components': './components', | ||
'data': './data' | ||
} | ||
} | ||
]]; | ||
|
||
return { | ||
presets: ['babel-preset-expo'], | ||
presets, | ||
plugins | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
{ | ||
"primary": "#35415A", | ||
"secondary": "#CA2D02", | ||
"tertiary": "#9197AE", | ||
"forth": "#EBEBEB" | ||
"colors": { | ||
"primary": "#35415A", | ||
"secondary": "#CA2D02", | ||
"tertiary": "#9197AE", | ||
"forth": "#EBEBEB" | ||
}, | ||
"notifications": { | ||
"title": "Angelus", | ||
"description": "descciption", | ||
"subscription": "apicaosica", | ||
"active": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.