Skip to content

chore(deps-dev): bump ejs from 3.1.9 to 3.1.10 #89

chore(deps-dev): bump ejs from 3.1.9 to 3.1.10

chore(deps-dev): bump ejs from 3.1.9 to 3.1.10 #89

Workflow file for this run

name: ci
on:
workflow_call:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build --if-present
- name: Check
run: |
npm run lint
npm run check
- name: Test
run: npm test