Skip to content

Merge pull request #5 from computerjazz/dm-add-error-threshold #28

Merge pull request #5 from computerjazz/dm-add-error-threshold

Merge pull request #5 from computerjazz/dm-add-error-threshold #28

Workflow file for this run

name: main
on:
push:
branches:
- master
- main
- default
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [13.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Restore dependencies
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Typecheck
uses: ./
- name: Typecheck projectFixtures/sub
uses: ./
with:
project: projectFixtures/sub