chore(deps): bump stylis from 4.3.1 to 4.3.4 #185
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: Test CI | |
on: push | |
permissions: | |
contents: write # to fetch code (actions/checkout) | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 # v3 | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Build workspaces | |
run: yarn build | |
- name: Run Test | |
run: yarn test:coverage | |
- name: Upload coverage | |
uses: actions/upload-artifact@v2 | |
with: | |
name: coverage | |
path: coverage/ | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: drl990114/rme |