Skip to content

Bump postcss from 8.4.32 to 8.4.33 #24

Bump postcss from 8.4.32 to 8.4.33

Bump postcss from 8.4.32 to 8.4.33 #24

Workflow file for this run

name: CI (apps)
on:
pull_request:
branches:
- main
- dev
paths:
- "apps/**"
- ".github/workflows/main_pr_apps.yaml"
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
ci:
runs-on: ubuntu-latest
# needs: build
strategy:
fail-fast: true
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4.1.1
- uses: pnpm/action-setup@v2.4.0
with:
version: 8
- uses: actions/setup-node@v4.0.1
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
# install
- name: Install dependencies 📦
run: pnpm i --frozen-lockfile
# lint
- name: Typecheck 🧷
run: pnpm run apps:typecheck
- name: Lint 🛫
run: pnpm run apps:lint
# build
- name: Build 🏗
run: pnpm run apps:build
# test
- name: Test 🧪
run: pnpm run apps:test