Skip to content

Commit

Permalink
Set up testing (#8)
Browse files Browse the repository at this point in the history
* add @testing-library/react-native

* write simple test using @testing-library/react-native

* trying out github actions

* run tests using github actions: attempt no. 1

* run tests using github actions: attempt no.2

* run tests using github actions: attempt no.3

* run tests using github actions: attempt no.4

* run tests using github actions: attempt 5
  • Loading branch information
MelroyNoronha committed Oct 19, 2022
1 parent a45e32f commit 17aa462
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 350 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci-run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on:
pull_request
jobs:
Run-Tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3

- uses: actions/setup-node@master
- uses: c-hive/gha-yarn-cache@v1

- name: Install node modules
run: |
yarn install
- name: Run tests
run: |
yarn test
File renamed without changes.

0 comments on commit 17aa462

Please sign in to comment.