Merge pull request #388 from shubh73/fix/ui-improvements #166
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: Push | |
on: [push] | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout repository code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: ⬆️ Upload output | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ github.sha }} | |
path: ./** | |
install: | |
needs: setup | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Restore output | |
uses: actions/download-artifact@v3 | |
with: | |
name: ${{ github.sha }} | |
- name: 🛠 Install dependencies | |
uses: bahmutov/npm-install@v1 | |
lint: | |
needs: [setup, install] | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Restore output | |
uses: actions/download-artifact@v3 | |
with: | |
name: ${{ github.sha }} | |
- name: 🛠 Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Run lint | |
run: yarn lint | |
- name: Run typecheck | |
run: yarn typecheck | |
test: | |
needs: [setup, install] | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Restore output | |
uses: actions/download-artifact@v3 | |
with: | |
name: ${{ github.sha }} | |
- name: 🛠 Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Run tests | |
run: yarn test --runInBand |