Bump ejs from 3.1.9 to 3.1.10 #54
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
lint-and-test: | |
name: Lint, typecheck and test | |
runs-on: 'ubuntu-latest' | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
- name: 📦 Install dependencies | |
run: pnpm install --no-optional --frozen-lockfile --prefer-offline | |
- name: 🚨 Lint | |
run: pnpm run lint | |
- name: ⚙️ TSCheck | |
run: pnpm run typecheck | |
- name: 🧹 Format Check | |
run: pnpm run format:check | |
- name: 🔬 Unit Tests | |
run: pnpm run test |