Skip to content

Updated the package json peer dependency for react identifier to use the latest react version from version 18 #57

Updated the package json peer dependency for react identifier to use the latest react version from version 18

Updated the package json peer dependency for react identifier to use the latest react version from version 18 #57

name: Continuous Integration
on:
pull_request:
branches:
- development
push:
branches:
- production
jobs:
test:
name: Ensure that every tests passes and the documentation builds correctly
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Dependencies
run: npm install
- name: Documentation build
run: npm -w documentation run build
# - name: Test
# run: npm test
# report:
# name: Sends the coverage report data to Coveralls
# if: ${{ github.ref == 'refs/heads/production' }}
# runs-on: ubuntu-20.04
# steps:
# - name: Checkout
# uses: actions/checkout@v3
# - name: Token
# run: 'echo "repo_token: ${{ secrets.COVERALLS_TOKEN }}" > .coveralls.yml'
# - name: Dependencies
# run: npm install
# - name: Test
# run: npm run coverage
# - name: Report
# run: npm run coverage-report