fix(deps): update dependency prismjs to v1.29.0 #277
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 Checking | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
code: | |
name: Type Checking | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Use Node.js 12 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "12" | |
- name: Install all dependencies | |
uses: Borales/[email protected] | |
- name: Run type checking server | |
run: cd packages/server && yarn tsc | |
- name: Run type checking web | |
run: cd packages/web && yarn tsc |