chore(deps-dev): bump @types/node from 20.11.25 to 20.12.3 #788
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: linting and formatting | |
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 && npm run format | |
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 typecheck |