Bump pbkdf2 from 3.1.2 to 3.1.3 #201
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: CI Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Yarn Install | |
run: yarn | |
- name: Lint | |
run: yarn lint | |
- name: Jest Tests | |
run: yarn test:ci | |
- name: Dist Build | |
run: yarn build:dist | |
- name: Lib Build | |
run: yarn build:lib | |
- name: Compile Styles | |
run: yarn build:sass | |
- name: Storybook build | |
run: yarn storybook-to-ghpages --dry-run --ci |