Skip to content

Merge branch 'main' of github.com:toneflix/vue-component-pack #488

Merge branch 'main' of github.com:toneflix/vue-component-pack

Merge branch 'main' of github.com:toneflix/vue-component-pack #488

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags-ignore:
- '*'
pull_request:
types:
- 'synchronize'
- 'opened'
branches:
- '**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v3
- name: Set Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint
run: |
pnpm run lint