Skip to content

build(deps): bump postcss from 8.4.29 to 8.4.31 #2509

build(deps): bump postcss from 8.4.29 to 8.4.31

build(deps): bump postcss from 8.4.29 to 8.4.31 #2509

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
# Use same version of node for netlify and CI build
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- name: Lint 🧶
run: npm run lint
- name: Build 🏗️
run: npm run build
# Build is separate deployment on develop branch
if: ${{ github.ref != 'refs/heads/develop' }}