Skip to content

build(deps): bump ejs from 3.1.9 to 3.1.10 #148

build(deps): bump ejs from 3.1.9 to 3.1.10

build(deps): bump ejs from 3.1.9 to 3.1.10 #148

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
types: [opened]
jobs:
build:
strategy:
matrix:
node-version: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
name: Build with ${{ matrix.node-version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: yarn --immutable
- if: github.event_name == 'pull_request'
name: Validate all commits from PR
run: yarn commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
- name: esLinter
run: yarn lint
- name: Type Checking
run: yarn check-types
# Test via jest
- name: Unit Tests through jest
run: yarn test