Merge pull request #77 from isaiahthedev/add-calculator-activity #36
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: 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 | |