Skip to content

fix(deps): bump vuetify from 2.6.14 to 3.4.8 #1844

fix(deps): bump vuetify from 2.6.14 to 3.4.8

fix(deps): bump vuetify from 2.6.14 to 3.4.8 #1844

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [16.15.0]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node env
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
check-latest: true
- name: Cache node_modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm ci --prefer-offline --no-audit
- name: Run linter
run: npm run lint
- name: Run tests
run: npm test
- name: Run build
run: npm run build
- name: Notify Discord
uses: sarisia/actions-status-discord@v1
with:
webhook:
${{ secrets.DISCORD_WEBHOOK_URL }}
if: failure()