Skip to content

Vue updates

Vue updates #241

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
env:
NODE_ENV: production
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: .tool-versions
cache: npm
- run: NODE_ENV=development npm install
- run: npm run lint:check
- run: npm run build