Skip to content

chore(lint_build): run workflow on all push events #6

chore(lint_build): run workflow on all push events

chore(lint_build): run workflow on all push events #6

Workflow file for this run

name: Lint and Build
on: push
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