💄 Update bottom bar styling #194
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: Build and Test | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout 🛎️ | |
| uses: actions/checkout@v2.3.1 | |
| - name: Install and Build 🔧 | |
| run: | | |
| npm install | |
| npm run build | |
| - name: Linting 🪄 | |
| run: | | |
| npm run lint | |
| npm run format:check | |
| - name: Test ✅ | |
| run: | | |
| npm run test |