Skip to content

chore(deps): update devdependencies #7159

chore(deps): update devdependencies

chore(deps): update devdependencies #7159

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Lint and test
run: |
yarn lint
yarn test
- name: Build app & storybook
run: |
yarn build
mkdir -p "./dist/storybook/${{ github.head_ref }}"
yarn build-storybook -o "./dist/storybook/${{ github.head_ref }}"