From cfea45cb011acf077d7fec41a1c4cb548d3c6165 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Rebours?= Date: Thu, 28 Oct 2021 14:20:05 +0200 Subject: [PATCH] add CI task --- .github/workflows/github-actions-demo.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index abbf719..f049216 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -45,3 +45,16 @@ jobs: uses: browser-actions/setup-chrome@latest - run: npm ci - run: npm run test:browser + + react-native-tests: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Install Node.js 14 + uses: actions/setup-node@v2 + with: + node-version: 14.x + cache: 'npm' + - run: npm ci + - run: npm run test:react-native