Bump version react, react-dom #289
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: CI | |
on: | |
pull_request | |
jobs: | |
storybook-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Run build | |
run: | | |
yarn install --frozen-lockfile | |
cd storybook | |
yarn install --frozen-lockfile | |
yarn build-storybook | |
storybook-lints: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Run lints | |
run: | | |
yarn install --frozen-lockfile | |
cd storybook | |
yarn install --frozen-lockfile | |
yarn lint | |
sphere: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- run: yarn install --frozen-lockfile | |
- run: yarn build | |
- run: yarn lint |