Skip to content

chore: bump vue and vue-template-compiler #37

chore: bump vue and vue-template-compiler

chore: bump vue and vue-template-compiler #37

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install && npx npm-install-peers
- name: Lint
run: npm run lint
- name: Build packages
run: npm run build