Skip to content

Merge pull request #9 from samuelematias/feat/ci-trigger-on-push-to-m… #4

Merge pull request #9 from samuelematias/feat/ci-trigger-on-push-to-m…

Merge pull request #9 from samuelematias/feat/ci-trigger-on-push-to-m… #4

Workflow file for this run

name: React Native (CI) - Run tests.
on:
push:
branches: [ main ]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18.18.0'
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test