Skip to content

Merge pull request #495 from H1ghBre4k3r/dependabot/npm_and_yarn/type… #981

Merge pull request #495 from H1ghBre4k3r/dependabot/npm_and_yarn/type…

Merge pull request #495 from H1ghBre4k3r/dependabot/npm_and_yarn/type… #981

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build (typecheck) the project
run: npm run build
- name: Lint the project
run: npm run lint