File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed
Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build
2+
3+ on : [push]
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+
9+ strategy :
10+ matrix :
11+ node-version :
12+ - 8.x
13+ - 10.x
14+ - 12.x
15+
16+ steps :
17+ - uses : actions/checkout@v1
18+ - name : Use Node.js ${{ matrix.node-version }}
19+ uses : actions/setup-node@v1
20+ with :
21+ node-version : ${{ matrix.node-version }}
22+ - name : Install
23+ run : |
24+ yarn install \
25+ --non-interactive \
26+ --frozen-lockfile
27+ - name : Test
28+ run : yarn test
29+ env :
30+ CI : true
Original file line number Diff line number Diff line change 11# ` @reason-react-native/navigation `
22
3+ [ ![ Build Status] ( https://github.com/reason-react-native/navigation/workflows/Build/badge.svg )] ( https://github.com/reason-react-native/navigation/actions )
4+ [ ![ Version] ( https://img.shields.io/npm/v/@reason-react-native/navigation.svg )] ( https://www.npmjs.com/@reason-react-native/navigation )
5+ [ ![ Chat] ( https://img.shields.io/discord/235176658175262720.svg?logo=discord&colorb=blue )] ( https://reasonml-community.github.io/reason-react-native/discord/ )
6+
37[ ReasonML] ( https://reasonml.github.io ) /
48[ BuckleScript] ( https://bucklescript.github.io ) bindings for
59[ ` react-navigation ` ] ( https://github.com/react-navigation/react-navigation ) .
You can’t perform that action at this time.
0 commit comments