Update dependencies, remove SSR tests as useless #25
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
name: Running Code Coverage | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: yarn && cd ./react && yarn && cd ../react-compat && yarn && cd ../mobx && yarn | |
- name: Build | |
run: yarn build | |
- name: Run tests | |
run: yarn test | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 |