Skip to content

Upgrade vuetify from 3.0.0-beta.0 -> 3.3.12 #43

Upgrade vuetify from 3.0.0-beta.0 -> 3.3.12

Upgrade vuetify from 3.0.0-beta.0 -> 3.3.12 #43

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- vue-2
push:
branches:
- main
- vue-2
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn
- run: yarn lint
- run: yarn test:unit
- run: yarn build
- run: yarn type