Skip to content

Bump typescript from 5.1.3 to 5.1.6 (#119) #660

Bump typescript from 5.1.3 to 5.1.6 (#119)

Bump typescript from 5.1.3 to 5.1.6 (#119) #660

Workflow file for this run

name: Lint Vue frontend
on:
push:
pull_request:
workflow_dispatch:
env:
NODE_VERSION: "18.x" # set this to the node version to use
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "16.x"
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache Node.js modules
id: yarn-cache
uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile --silent
env:
CI: true
- name: Lint
run: yarn lint
env:
CI: true
- name: Lint
run: yarn build
env:
CI: true
# disable typecheck for now
# - name: Typecheck
# run: yarn typecheck
# env:
# CI: true