This repository has been archived by the owner on May 26, 2024. It is now read-only.
chore(deps): bump postcss from 8.4.16 to 8.4.38 #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Checks if the PR can be built | |
name: Test if PR can be built | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build-n-test: | |
name: Build & test PR | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16.x | |
cache: yarn | |
- name: Test build | |
working-directory: docs | |
run: | | |
rm -rf node_modules && yarn cache clean | |
yarn install --frozen-lockfile | |
yarn build |