Skip to content

chore(deps): update dependency @wayofdev/postcss-config to v3.0.5 #3121

chore(deps): update dependency @wayofdev/postcss-config to v3.0.5

chore(deps): update dependency @wayofdev/postcss-config to v3.0.5 #3121

Workflow file for this run

---
on: # yamllint disable-line rule:truthy
pull_request:
types:
- opened
- synchronize
- reopened
# Only consider those paths to trigger the action
paths:
- 'apps/docs/**'
- 'packages/**'
- 'package.json'
- 'pnpm*'
- '.github/**'
- 'tsconfig.base.json'
name: 🔍 Continuous integration for docs app
jobs:
integration:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: ['ubuntu-latest']
node: ['18']
env:
TURBO_API: 'http://127.0.0.1:9080'
TURBO_TEAM: 'next-starter-tpl'
TURBO_TOKEN: 'local_server_turbo_relaxed_token'
steps:
- name: 📦 Check out the codebase
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: ⚙️ Setup node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
registry-url: 'https://registry.npmjs.org/'
- name: 🚀 Setup TurboRepo local server
uses: felixmosh/turborepo-gh-artifacts@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
server-token: ${{ env.TURBO_TOKEN }}
- name: 📥 Monorepo install
uses: wayofdev/gh-actions/actions/pnpm-install@master
with:
enable-corepack: true
cache-node-modules: true
# see https://github.com/vercel/next.js/pull/27362
- name: ♻️ Restore "docs" app build from cache
uses: actions/cache@v3
with:
path: |
${{ github.workspace }}/apps/docs/.next/cache
${{ github.workspace }}/.cache
${{ github.workspace }}/**/tsconfig.tsbuildinfo
key: docs-cache-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
- name: 📝 Typecheck
working-directory: apps/docs
run: |
pnpm lint:types
- name: 🚨 Linter
working-directory: apps/docs
run: |
pnpm lint
- name: 🏗 Build docs-app
working-directory: apps/docs
run: |
pnpm --filter=docs build