MCD-103 Add new resume, update resume link, increase accordion collap… #14
Workflow file for this run
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: Type Check | |
on: [push] | |
jobs: | |
type-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set Node Version to 18.12.0 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "18.12.0" | |
- name: Clone Repo | |
uses: actions/checkout@v2 | |
- name: Install Deps | |
run: npm install | |
- name: Run Type Check | |
run: npm run type:check |