Merge pull request #107 from Guma15/feature/reaction_time_game #48
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: vercel deployment | |
| on: [push] | |
| jobs: | |
| eslint: | |
| name: Lint code base | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: ${{matrix.node_version}} | |
| cache: 'npm' | |
| - name: Install Packages | |
| run: npm i | |
| - name: Build and Bundle | |
| run: CI=false npm run build | |