Skip to content

Bump svelte from 4.2.12 to 4.2.19 #256

Bump svelte from 4.2.12 to 4.2.19

Bump svelte from 4.2.12 to 4.2.19 #256

Workflow file for this run

name: Lint
on:
push:
branches:
- '*'
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Install pnpm 📦
uses: pnpm/action-setup@v3
with:
version: 'latest'
- name: Setup Node.js 🛠️
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'pnpm'
- name: Install dependencies 📦
run: |
pnpm install
- name: Lint with eslint 🧹
run: |
pnpm lint
- name: Lint with stylelint 🧹
run: |
pnpm lint:styles