Skip to content

Update vue to version 3.5.12 #173

Update vue to version 3.5.12

Update vue to version 3.5.12 #173

Workflow file for this run

name: Build
on: push
jobs:
build-lint-test:
name: Build, Lint & Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 19.x]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Run the linter
run: yarn lint
- name: Run the tests
run: yarn test
- name: Upload coverage report to Codecov
if: matrix.node-version == '19.x'
uses: codecov/codecov-action@v3