chore(deps): bump typedoc-plugin-markdown from 3.13.6 to 4.1.0 #592
Workflow file for this run
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: Verify | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
react-versions: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
react: [ 16, 17, 18 ] | |
name: React ${{ matrix.react }} Build | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: volta-cli/action@v4 | |
- name: Dependencies | |
run: yarn | |
- name: Custom React version | |
run: | | |
echo "enableImmutableInstalls: false" > ./.yarnrc.yml | |
yarn add react@${{ matrix.react }} -D | |
cd packages/core | |
yarn add react@${{ matrix.react }} -D | |
cd ../.. | |
cat ./.yarnrc.yml | |
yarn | |
- name: Build | |
run: yarn build:core | |
verify: | |
runs-on: ubuntu-latest | |
name: Lint and Test | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: volta-cli/action@v4 | |
- name: Dependencies | |
run: yarn | |
- name: Lint | |
run: yarn lint | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test | |
- name: Storybook | |
run: yarn build-storybook |