Skip to content

refactor: added error handling, removednot required functions #3

refactor: added error handling, removednot required functions

refactor: added error handling, removednot required functions #3

Workflow file for this run

name: Lint and Build
on:
push:
branches:
- '*'
- '!main'
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Lint Vue app
run: npm run lint
- name: Build Vue app
run: npm run build