Skip to content

Fix commas showing up on generated website #36

Fix commas showing up on generated website

Fix commas showing up on generated website #36

Workflow file for this run

name: "CLI - CI"
on: [pull_request]
jobs:
build:
name: "Build, lint, test - ${{ matrix.os }}"
strategy:
matrix:
node: ["18"]
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- name: "Checkout repo"
uses: actions/checkout@v3
- name: "Set up pnpm"
uses: pnpm/action-setup@v2
with:
version: 8
- name: "Set up Node ${{ matrix.node }}"
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: pnpm
- name: "Install dependencies"
run: pnpm install
- name: "Build"
run: pnpm build:cli
- name: "Lint"
run: pnpm lint:cli
- name: "Test"
run: pnpm test:cli