Skip to content

Improvements

Improvements #535

Workflow file for this run

name: Linter
on:
pull_request:
types:
- opened
- synchronize
- reopened
push:
branches:
- master
- development/**
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.4.x]
steps:
- uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
# cache: npm
- name: Restore build from cache
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-v2-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-v2-
- name: Install dependencies
run: npm i
- name: Typecheck
run: yarn typecheck