Skip to content

Commit bbe6c9d

Browse files
authored
Merge pull request DylanVann#4 from Sparted/feature/preload-callbacks-fetch-updates-2021-08-18
Feature/preload callbacks fetch updates 2021 08 18
2 parents 0f67ddb + f8d13ec commit bbe6c9d

File tree

102 files changed

+12984
-13645
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+12984
-13645
lines changed

.babelrc

-3
This file was deleted.

.circleci/config.yml

-57
This file was deleted.

.eslintrc.js

-35
This file was deleted.

.github/workflows/main.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: CI
2+
on: [push]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Begin CI...
8+
uses: actions/checkout@v2
9+
with:
10+
fetch-depth: 0
11+
12+
- name: Use Node
13+
uses: actions/setup-node@v1
14+
with:
15+
node-version: '14'
16+
17+
- name: Install dependencies
18+
run: yarn install --frozen-lockfile
19+
env:
20+
CI: true
21+
22+
- name: Build
23+
run: yarn build
24+
env:
25+
CI: true
26+
27+
- name: CI
28+
run: yarn dv-scripts ci
29+
env:
30+
CI: true
31+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
33+
34+
- name: Test Coverage
35+
run: bash <(curl -s https://codecov.io/bash) -f coverage/lcov.info
36+
env:
37+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ DerivedData
2222
*.xcuserstate
2323
project.xcworkspace
2424

25+
# CocoaPods
26+
Podfile.lock
27+
Pods
28+
2529
# Android/IJ
2630
#
2731
.idea
@@ -38,6 +42,10 @@ example/android/app/src/main/gen
3842

3943
# build
4044
react-native-fast-image-*.tgz
45+
dist/
4146

4247
# coverage reports
4348
coverage
49+
50+
# TypeScript incremental compilation cache
51+
*.tsbuildinfo

.node-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v15.2.0

.npmignore

-28
This file was deleted.

0 commit comments

Comments
 (0)