This repository has been archived by the owner on Nov 29, 2023. It is now read-only.
Bump ejs from 3.1.6 to 3.1.9 #225
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: ci | |
on: [push, pull_request] | |
jobs: | |
lint-check: | |
name: "Lintcheck" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install gangster npm | |
run: "npm i pnpm -g" | |
- name: Install bloatware | |
run: "pnpm i" | |
- name: Check Blusk's grammar | |
run: "pnpm lint" | |
tests-check: | |
name: "Unit Tests" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install gangster npm | |
run: "npm i pnpm -g" | |
- name: Install bloatware | |
run: "pnpm i" | |
- name: Determine if Blusk's logic is flawed | |
run: "pnpm test" | |
type-check: | |
name: "Typecheck" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install npm from the hood | |
run: "npm i pnpm -g" | |
- name: Install bloatware | |
run: "pnpm i" | |
- name: Check Blusk's false logic | |
run: "pnpm typecheck" | |
compile-check: | |
name: Compile Typescript | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install npm from the hood | |
run: "npm i pnpm -g" | |
- name: Install bloatware | |
run: "pnpm i" | |
- name: Build the masterpiece | |
run: "pnpm build" |