ci: update CI and (re)enable coverage (#826) [skip ci]

This commit is contained in:
Frieder Bluemle 2021-09-23 04:36:57 -07:00 committed by GitHub
parent 4aea52fc4d
commit d96b851f38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 37 deletions

17
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- run: yarn --frozen-lockfile
- run: yarn build
- run: yarn test --coverage
- if: github.event.repository.fork == false && github.event_name != 'pull_request'
run: yarn dv-scripts ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- uses: codecov/codecov-action@v2

View File

@ -1,37 +0,0 @@
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Begin CI...
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node
uses: actions/setup-node@v1
with:
node-version: '14'
- name: Install dependencies
run: yarn install --frozen-lockfile
env:
CI: true
- name: Build
run: yarn build
env:
CI: true
- name: CI
run: yarn dv-scripts ci
env:
CI: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Test Coverage
run: bash <(curl -s https://codecov.io/bash) -f coverage/lcov.info
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

View File

@ -46,6 +46,10 @@
"extends": "dv-scripts"
},
"jest": {
"coveragePathIgnorePatterns": [
"ReactNativeFastImageExample*",
"ReactNativeFastImageExampleServer*"
],
"modulePathIgnorePatterns": [
"ReactNativeFastImageExample*",
"ReactNativeFastImageExampleServer*"