Skip to content

build(deps-dev): bump ejs from 3.1.9 to 3.1.10 #503

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

build(deps-dev): bump ejs from 3.1.9 to 3.1.10 #503

Workflow file for this run

name: Test
on:
pull_request:
branches: [ main ]
jobs:
test:
strategy:
matrix:
node-version: [18, 20, 21]
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install
run: pnpm i
- name: Lint and Type Check
run: pnpm check
- name: Test
run: pnpm run test