Skip to content

Bump postcss from 8.4.21 to 8.4.31 #119

Bump postcss from 8.4.21 to 8.4.31

Bump postcss from 8.4.21 to 8.4.31 #119

Workflow file for this run

name: Run Tests
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: false
on:
pull_request:
workflow_dispatch:
jobs:
test:
name: 🧪 Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Cache node modules
id: cache-yarn
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: |
~/.cache/yarn
node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock', '**/package.json') }}
restore-keys: |
${{ runner.os }}-yarn-
- if: steps.cache-yarn.outputs.cache-hit != 'true'
name: 📦 Install Dependencies
run: yarn install --frozen-lockfile
- name: 🔨 Build
run: yarn build
- name: 🧪 Test
run: yarn test