Skip to content

Bump postcss from 8.4.14 to 8.4.31 #192

Bump postcss from 8.4.14 to 8.4.31

Bump postcss from 8.4.14 to 8.4.31 #192

Workflow file for this run

name: Lint a pull request
on: pull_request
jobs:
lint:
name: Lint and try building bundles
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up Node 14 📦
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Cache pnpm modules 🗄
uses: actions/cache@v2
env:
cache-name: cache-pnpm-modules
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-
- name: Install pnpm 🧰
uses: pnpm/action-setup@v2.0.1
with:
version: 6.14.2
- name: Install dependencies 🧰
run: pnpm install
- name: Lint 🔬
run: pnpm run lint
- name: Build bundles 🔧
run: pnpm run build