feat: add icons (upload_file, save) (#1874) #4055
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: ~ | |
| workflow_dispatch: ~ | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Use Node.js v20 | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: "20.x" | |
| - name: Install dependencies | |
| run: npm i | |
| - name: Build | |
| run: npm run build | |
| - name: Linting | |
| run: npm run lint | |
| - name: Unit tests | |
| run: npm run test | |
| - name: Build storybook | |
| run: npm run build:storybook |