Skip to content

Commit dafcbb3

Browse files
committed
ci: update BigList import paths to use local library
1 parent 92f37e7 commit dafcbb3

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ jobs:
2121
uses: actions/setup-node@v3
2222
with:
2323
node-version: ${{ matrix.node-version }}
24-
cache: 'yarn'
24+
cache: 'npm'
2525

2626
- name: Install dependencies
27-
run: yarn install
27+
run: npm ci
2828

2929
- name: Run tests
30-
run: yarn test
30+
run: npm test
3131

3232
- name: Generate coverage report
33-
run: yarn test:coverage
33+
run: npm run test:coverage
3434

3535
- name: Upload coverage to Codecov
3636
uses: codecov/codecov-action@v3

example/src/lists/ColumnsList.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
StyleSheet,
66
View,
77
} from "react-native";
8-
import BigList from "react-native-big-list";
8+
import BigList from "../../../lib";
99
import { List, Subheading, TextInput } from "react-native-paper";
1010
import { StatusBar } from "expo-status-bar";
1111

example/src/lists/CompareList.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
import { List, Subheading } from "react-native-paper";
1212
import { StatusBar } from "expo-status-bar";
1313

14-
import BigList from "react-native-big-list";
14+
import BigList from "../../../lib";
1515
import data from "../data/data.json";
1616
import Block from "./components/Block";
1717

example/src/lists/HorizontalList.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
import { List, Subheading } from "react-native-paper";
99
import { StatusBar } from "expo-status-bar";
1010

11-
import BigList from "react-native-big-list";
11+
import BigList from "../../../lib";
1212
import data from "../data/data.json";
1313
import Block from "./components/Block";
1414

example/src/lists/List.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
import { List, Subheading } from "react-native-paper";
99
import { StatusBar } from "expo-status-bar";
1010

11-
import BigList from "react-native-big-list";
11+
import BigList from "../../../lib";
1212
import data from "../data/data.json";
1313
import Block from "./components/Block";
1414

example/src/lists/MultiSelectList.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { useState } from "react";
22
import { KeyboardAvoidingView, SafeAreaView, StyleSheet } from "react-native";
3-
import BigList from "react-native-big-list";
3+
import BigList from "../../../lib";
44
import { Checkbox } from "react-native-paper";
55

66
import data from "../data/data.json";

example/src/lists/SectionColumnsTest.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
StyleSheet,
66
View,
77
} from "react-native";
8-
import BigList from "react-native-big-list";
8+
import BigList from "../../../lib";
99
import { Appbar, List, Subheading, TextInput } from "react-native-paper";
1010
import { StatusBar } from "expo-status-bar";
1111

example/src/lists/SectionList.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { KeyboardAvoidingView, SafeAreaView, StyleSheet } from "react-native";
33
import { Appbar, List, Subheading } from "react-native-paper";
44
import { StatusBar } from "expo-status-bar";
55

6-
import BigList from "react-native-big-list";
6+
import BigList from "../../../lib";
77
import sections from "../data/sections.json";
88
import Block from "./components/Block";
99

example/src/lists/SelectList.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { useState } from "react";
2-
import BigList from "react-native-big-list";
2+
import BigList from "../../../lib";
33
import { Checkbox } from "react-native-paper";
44

55
const SelectList = ({ data, value, onSelect }) => {

0 commit comments

Comments
 (0)