Skip to content

feat: add base style for html #24

feat: add base style for html

feat: add base style for html #24

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
env:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
jobs:
main:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8.7.5
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Check code format
run: pnpm format:check
- name: Linting
run: pnpm lint
- name: Check type
run: pnpm type:check
- name: Build
run: pnpm build