Skip to content

Dependency(deps-dev): bump vue-tsc from 0.40.13 to 1.8.18 #1194

Dependency(deps-dev): bump vue-tsc from 0.40.13 to 1.8.18

Dependency(deps-dev): bump vue-tsc from 0.40.13 to 1.8.18 #1194

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@v3
- 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