Add depcreation message to README #35
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: Build Storybook | |
on: | |
pull_request: | |
jobs: | |
build-storybook: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out latest code from Github | |
uses: actions/checkout@v3 | |
- run: npm ci | |
- name: Lerna Bootstrap | |
env: | |
NPM_TOKEN: ${{ secrets.FONT_AWESOME_TOKEN }} | |
run: npx lerna bootstrap | |
- name: Lerna build | |
run: npx lerna run build | |
- name: Build Storybook | |
env: | |
NODE_OPTIONS: --openssl-legacy-provider | |
run: npm run build-storybook |