Bump prismjs from 1.21.0 to 1.30.0 #87
This file contains hidden or 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: Components | |
| on: push | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: '14' | |
| - name: Install Packages | |
| run: yarn install | |
| - name: Build Components | |
| run: yarn build-components | |
| - name: Build Test React App | |
| run: yarn react-build | |
| - name: Build Styleguide | |
| run: yarn build-styleguide |