feat: support forwarding modal props (#61) #168
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Node.js CI | |
on: | |
push: | |
branches: | |
- master | |
- next | |
pull_request: | |
branches: | |
- master | |
- next | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rsuite: [4, 5] | |
react: [16, 17] | |
exclude: | |
# RSuite 4 does not work with react 17 | |
- rsuite: 4 | |
react: 17 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8.10.5 | |
- name: Use Node.js LTS | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 'lts/*' | |
- run: pnpm i | |
- run: pnpm run build --if-present | |
- run: pnpm run test --coverage | |
env: | |
RSUITE_VERSION: ${{ matrix.rsuite }} | |
REACT_VERSION: ${{ matrix.react }} | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
flags: 'RSuite ${{ matrix.rsuite }} React ${{ matrix.react }}' |