Skip to content

chore(deps): update js deps #2

chore(deps): update js deps

chore(deps): update js deps #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
strategy:
fail-fast: false
matrix:
check:
- format
- type
- graphql
name: Check ${{ matrix.check }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: yarn
- name: Install
run: yarn install
- name: Check
run: yarn check:${{ matrix.check }}