Skip to content

Bump vite from 5.0.4 to 5.0.5 (#43) #183

Bump vite from 5.0.4 to 5.0.5 (#43)

Bump vite from 5.0.4 to 5.0.5 (#43) #183

Workflow file for this run

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