Skip to content

minor change in the app.vue file this commit is mainly to test jobs f… #2

minor change in the app.vue file this commit is mainly to test jobs f…

minor change in the app.vue file this commit is mainly to test jobs f… #2

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-and-format:
name: Lint and format
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Run linters
run: npm run lint
- name: Run format check
run: npm run format:check
build:
name: Build
runs-on: ubuntu-latest
needs: lint-and-format
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build