Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

Update dependency postcss to v8.4.34 #8179

Update dependency postcss to v8.4.34

Update dependency postcss to v8.4.34 #8179

Workflow file for this run

name: pipeline
on:
push:
pull_request:
workflow_dispatch:
jobs:
pipeline:
name: pipeline
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
- uses: actions/cache@v3
with:
path: ${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}
- name: Install and build
run: yarn install --frozen-lockfile
- name: Lint
run: |
yarn format
yarn lint
- name: Build
run: yarn build