Skip to content

Dependency(deps): bump actions/checkout from 3 to 4 #1187

Dependency(deps): bump actions/checkout from 3 to 4

Dependency(deps): bump actions/checkout from 3 to 4 #1187

Workflow file for this run

name: Check Lint and Format
on: [push]
jobs:
lint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: npm install
run: npm ci
- name: check format
run: npm run check-format
- name: check lint
run: npm run check-lint
- name: typecheck
run: npm run typecheck