chore(deps-dev): bump @types/node in /packages/tiskit #586
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: Build and lint | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Node v17 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 17 | |
cache: npm | |
- name: Install dependencies | |
run: npm i | |
- name: Run ESLint | |
run: npm run lint | |
typescript: | |
name: TypeScript | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Node v17 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 17 | |
cache: npm | |
- name: Install dependencies | |
run: npm i | |
- name: Register Problem Matcher | |
run: echo "##[add-matcher].github/tsc.json" | |
- name: Run TypeScript compiler | |
run: npm run build |