Skip to content

Bump expect-type from 0.18.0 to 0.19.0 #161

Bump expect-type from 0.18.0 to 0.19.0

Bump expect-type from 0.18.0 to 0.19.0 #161

Workflow file for this run

name: Typescript + prettier checks
on:
push:
branches: [master]
pull_request:
branches: ['**/**']
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
validate:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
# Using node action to manage caching node_modules
cache: 'yarn'
- name: Install dependencies
run: yarn install
# Validates project
- name: Typescript + prettier checks
run: yarn validate