fix deployment bug, add build-storybook script #1223
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: basic tests | |
on: | |
push: | |
branches: | |
- "user/**" | |
- "feature/**" | |
- "improvement/**" | |
- "bugfix/**" | |
- "w/**" | |
- "q/**" | |
- "hotfix/**" | |
- "dependabot/**" | |
pull_request: | |
types: | |
- opened | |
branches: | |
- 'feature/bump-core-ui-version-to-**' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- run: npm ci | |
- run: npm run test | |
- run: npm run lint |