Skip to content

Bump ejs from 3.1.9 to 3.1.10 #232

Bump ejs from 3.1.9 to 3.1.10

Bump ejs from 3.1.9 to 3.1.10 #232

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