Skip to content

Commit

Permalink
Adding github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sshivananda committed Mar 22, 2021
1 parent ed1ed20 commit 33db14d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: React Native CI

on:
push:
branches:
- '*'
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [macOS-latest]
node-version: [14.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- run: yarn

0 comments on commit 33db14d

Please sign in to comment.