Skip to content

build(deps-dev): bump postcss from 8.4.24 to 8.4.31 #10

build(deps-dev): bump postcss from 8.4.24 to 8.4.31

build(deps-dev): bump postcss from 8.4.24 to 8.4.31 #10

Workflow file for this run

name: Hyas CI
on:
push:
branches: main
pull_request:
branches: main
jobs:
build:
name: "Build: ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
timeout-minutes: 3
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18.x, 20.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup node@${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run linters
run: pnpm lint --if-present
- name: Build site
run: pnpm build
# - name: Run tests
# run: pnpm test --if-present